├── .gitignore ├── .vscode └── settings.json ├── 386INIT.ASM ├── 386TRAP.ASM ├── COMIO.ASM ├── DOSDUMP.C ├── INTPARSE.C ├── MAIN.C ├── MAKEFILE ├── MEMMGR.C ├── README.md ├── REBOOT.ASM ├── SPY.COM ├── SPY.MAP ├── Spy.dsp ├── Spy.dsw ├── V86INT.ASM ├── V86IO.ASM ├── VIDMGR.C ├── VIDSAVE.ASM ├── X86DEBUG.C ├── h ├── 386.H ├── 387.H ├── ALL.H ├── BIOS.H ├── CMOS.H ├── COM.H ├── DEBUG.H ├── DISK.H ├── DOS.H ├── EMS.H ├── GLOBALS.H ├── KBD.H ├── LIB.H ├── PARSE.H ├── PIC.H ├── SYM.H ├── TIMER.H ├── TYPES.H ├── VIDEO.H └── X86.H ├── images └── First_Boot.jpg ├── inc ├── 386.INC ├── 387.INC ├── ALL.INC ├── BIOS.INC ├── CMOS.INC ├── COM.INC ├── DEBUG.INC ├── DISK.INC ├── DOS.INC ├── EMS.INC ├── GLOBALS.INC ├── KBD.INC ├── LIB.INC ├── PIC.INC ├── TIMER.INC ├── TYPES.INC ├── VIDEO.INC └── X86.INC ├── lib ├── GETS.C ├── PRINTF.C ├── SPRINTF.C └── STRING.C ├── obj ├── dosdump.asm ├── intparse.asm ├── listing.inc ├── main.asm ├── memmgr.asm ├── vidmgr.asm └── x86debug.asm ├── orig ├── 386INIT.ASM ├── 386TRAP.ASM ├── COMIO.ASM ├── DOSDUMP.C ├── INTPARSE.C ├── MAIN.C ├── MAKEFILE ├── MEMMGR.C ├── REBOOT.ASM ├── V86INT.ASM ├── V86IO.ASM ├── VIDMGR.C ├── VIDSAVE.ASM ├── X86DEBUG.C ├── bin │ ├── COMIO.OBJ │ ├── DOSDUMP.OBJ │ ├── GETS.OBJ │ ├── INTPARSE.OBJ │ ├── MAIN.OBJ │ ├── MEMMGR.OBJ │ ├── PRINTF.OBJ │ ├── REBOOT.COM │ ├── REBOOT.MAP │ ├── SPRINTF.OBJ │ ├── SPY.COM │ ├── SPY.MAP │ ├── SPYOLD.COM │ ├── SPYOLD.MAP │ ├── STRING.OBJ │ ├── TEST.COM │ ├── TEST.OBJ │ ├── VIDMGR.OBJ │ ├── VIDSAVE.OBJ │ └── X86DEBUG.OBJ ├── inc │ ├── 386.H │ ├── 386.INC │ ├── 387.H │ ├── 387.INC │ ├── ALL.H │ ├── ALL.INC │ ├── BIOS.H │ ├── BIOS.INC │ ├── CMOS.H │ ├── CMOS.INC │ ├── COM.H │ ├── COM.INC │ ├── DEBUG.H │ ├── DEBUG.INC │ ├── DISK.H │ ├── DISK.INC │ ├── DOS.H │ ├── DOS.INC │ ├── EMS.H │ ├── EMS.INC │ ├── GLOBALS.H │ ├── GLOBALS.INC │ ├── KBD.H │ ├── KBD.INC │ ├── LIB.H │ ├── LIB.INC │ ├── PARSE.H │ ├── PIC.H │ ├── PIC.INC │ ├── SYM.H │ ├── TIMER.H │ ├── TIMER.INC │ ├── TYPES.H │ ├── TYPES.INC │ ├── VIDEO.H │ ├── VIDEO.INC │ ├── X86.H │ └── X86.INC └── lib │ ├── GETS.C │ ├── PRINTF.C │ ├── SPRINTF.C │ └── STRING.C ├── reboot.com ├── reboot.map ├── tools ├── C1.ERR ├── C13232.EXE ├── C1XX3232.EXE ├── C23.ERR ├── C23232.EXE ├── CL.ERR ├── CL32.MSG ├── CL3232.ERR ├── CL3232.EXE ├── FIXASM.C ├── FIXASM.EXE ├── H2INC.ERR ├── H2INC.EXE ├── LINK.EXE ├── ML.ERR └── ML.EXE └── vxd ├── 386INIT.ASM ├── 386TRAP.ASM ├── COMIO.ASM ├── COMIO.OBJ ├── COPYA.BAT ├── DEPEND.MK ├── DOSDUMP.C ├── DOSDUMP.OBJ ├── DOSSERV.ASM ├── DOSSERV.OBJ ├── INC ├── 386.H ├── 386.INC ├── 387.H ├── 387.INC ├── ALL.H ├── ALL.INC ├── BASEDEF.H ├── BIOS.H ├── BIOS.INC ├── CMOS.H ├── CMOS.INC ├── COM.H ├── COM.INC ├── DEBUG.H ├── DEBUG.INC ├── DISK.H ├── DISK.INC ├── DOS.H ├── DOS.INC ├── EMS.H ├── EMS.INC ├── GLOBALS.H ├── GLOBALS.INC ├── KBD.H ├── KBD.INC ├── LIB.H ├── LIB.INC ├── MRCI.H ├── MULT.H ├── PARSE.H ├── PIC.H ├── PIC.INC ├── SYM.H ├── TIMER.H ├── TIMER.INC ├── TYPES.H ├── TYPES.INC ├── VIDEO.H ├── VIDEO.INC ├── WIN386.H ├── X86.H └── X86.INC ├── INTPARSE.C ├── INTPARSE.OBJ ├── LIB ├── GETS.C ├── GETS.OBJ ├── PRINTF.C ├── PRINTF.OBJ ├── SPRINTF.C ├── SPRINTF.OBJ ├── STRING.C └── STRING.OBJ ├── MAIN.C ├── MAIN.OBJ ├── MAKEFILE ├── MEMMGR.C ├── MEMMGR.OBJ ├── MK.BAT ├── OBJ ├── 386INIT.OBJ ├── 386TRAP.OBJ ├── COMIO.OBJ ├── DOSDUMP.OBJ ├── GETS.OBJ ├── INTPARSE.OBJ ├── MAIN.OBJ ├── MEMMGR.OBJ ├── PRINTF.OBJ ├── REBOOT.OBJ ├── SPRINTF.OBJ ├── STRING.OBJ ├── V86INT.OBJ ├── V86IO.OBJ ├── VIDMGR.OBJ ├── VIDSAVE.OBJ └── X86DEBUG.OBJ ├── REBOOT.ASM ├── REBOOT.COM ├── REBOOT.MAP ├── SPY ├── SPY.386 ├── SPY.COM ├── SPY.MAP ├── SPY.MK ├── SPY.SYM ├── SPYCOM.MAP ├── SPYINIT.ASM ├── SPYINIT.OBJ ├── SPYKBD.ASM ├── SPYKBD.OBJ ├── SPYOLD.COM ├── SPYOLD.MAP ├── SPYTRAP.ASM ├── SPYTRAP.OBJ ├── SYM.C ├── SYM.EXE ├── SYM.SYM ├── SYMLOAD.C ├── SYMLOAD.OBJ ├── TEST.ASM ├── TEST.COM ├── TEST.OBJ ├── V86INT.ASM ├── V86IO.ASM ├── VIDMGR.C ├── VIDMGR.OBJ ├── VIDSAVE.ASM ├── VIDSAVE.OBJ ├── VMMDUMP.C ├── VMMDUMP.OBJ ├── VXDDUMP.C ├── VXDDUMP.OBJ ├── X86DEBUG.C └── X86DEBUG.OBJ /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /386INIT.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/386INIT.ASM -------------------------------------------------------------------------------- /386TRAP.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/386TRAP.ASM -------------------------------------------------------------------------------- /COMIO.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/COMIO.ASM -------------------------------------------------------------------------------- /DOSDUMP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/DOSDUMP.C -------------------------------------------------------------------------------- /INTPARSE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/INTPARSE.C -------------------------------------------------------------------------------- /MAIN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/MAIN.C -------------------------------------------------------------------------------- /MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/MAKEFILE -------------------------------------------------------------------------------- /MEMMGR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/MEMMGR.C -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/README.md -------------------------------------------------------------------------------- /REBOOT.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/REBOOT.ASM -------------------------------------------------------------------------------- /SPY.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/SPY.COM -------------------------------------------------------------------------------- /SPY.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/SPY.MAP -------------------------------------------------------------------------------- /Spy.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/Spy.dsp -------------------------------------------------------------------------------- /Spy.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/Spy.dsw -------------------------------------------------------------------------------- /V86INT.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/V86INT.ASM -------------------------------------------------------------------------------- /V86IO.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/V86IO.ASM -------------------------------------------------------------------------------- /VIDMGR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/VIDMGR.C -------------------------------------------------------------------------------- /VIDSAVE.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/VIDSAVE.ASM -------------------------------------------------------------------------------- /X86DEBUG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/X86DEBUG.C -------------------------------------------------------------------------------- /h/386.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/h/386.H -------------------------------------------------------------------------------- /h/387.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/h/387.H -------------------------------------------------------------------------------- /h/ALL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/h/ALL.H -------------------------------------------------------------------------------- /h/BIOS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/h/BIOS.H -------------------------------------------------------------------------------- /h/CMOS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/h/CMOS.H -------------------------------------------------------------------------------- /h/COM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/h/COM.H -------------------------------------------------------------------------------- /h/DEBUG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/h/DEBUG.H -------------------------------------------------------------------------------- /h/DISK.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/h/DISK.H -------------------------------------------------------------------------------- /h/DOS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/h/DOS.H -------------------------------------------------------------------------------- /h/EMS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/h/EMS.H -------------------------------------------------------------------------------- /h/GLOBALS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/h/GLOBALS.H -------------------------------------------------------------------------------- /h/KBD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/h/KBD.H -------------------------------------------------------------------------------- /h/LIB.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/h/LIB.H -------------------------------------------------------------------------------- /h/PARSE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/h/PARSE.H -------------------------------------------------------------------------------- /h/PIC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/h/PIC.H -------------------------------------------------------------------------------- /h/SYM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/h/SYM.H -------------------------------------------------------------------------------- /h/TIMER.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/h/TIMER.H -------------------------------------------------------------------------------- /h/TYPES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/h/TYPES.H -------------------------------------------------------------------------------- /h/VIDEO.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/h/VIDEO.H -------------------------------------------------------------------------------- /h/X86.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/h/X86.H -------------------------------------------------------------------------------- /images/First_Boot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/images/First_Boot.jpg -------------------------------------------------------------------------------- /inc/386.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/inc/386.INC -------------------------------------------------------------------------------- /inc/387.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/inc/387.INC -------------------------------------------------------------------------------- /inc/ALL.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/inc/ALL.INC -------------------------------------------------------------------------------- /inc/BIOS.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/inc/BIOS.INC -------------------------------------------------------------------------------- /inc/CMOS.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/inc/CMOS.INC -------------------------------------------------------------------------------- /inc/COM.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/inc/COM.INC -------------------------------------------------------------------------------- /inc/DEBUG.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/inc/DEBUG.INC -------------------------------------------------------------------------------- /inc/DISK.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/inc/DISK.INC -------------------------------------------------------------------------------- /inc/DOS.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/inc/DOS.INC -------------------------------------------------------------------------------- /inc/EMS.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/inc/EMS.INC -------------------------------------------------------------------------------- /inc/GLOBALS.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/inc/GLOBALS.INC -------------------------------------------------------------------------------- /inc/KBD.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/inc/KBD.INC -------------------------------------------------------------------------------- /inc/LIB.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/inc/LIB.INC -------------------------------------------------------------------------------- /inc/PIC.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/inc/PIC.INC -------------------------------------------------------------------------------- /inc/TIMER.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/inc/TIMER.INC -------------------------------------------------------------------------------- /inc/TYPES.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/inc/TYPES.INC -------------------------------------------------------------------------------- /inc/VIDEO.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/inc/VIDEO.INC -------------------------------------------------------------------------------- /inc/X86.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/inc/X86.INC -------------------------------------------------------------------------------- /lib/GETS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/lib/GETS.C -------------------------------------------------------------------------------- /lib/PRINTF.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/lib/PRINTF.C -------------------------------------------------------------------------------- /lib/SPRINTF.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/lib/SPRINTF.C -------------------------------------------------------------------------------- /lib/STRING.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/lib/STRING.C -------------------------------------------------------------------------------- /obj/dosdump.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/obj/dosdump.asm -------------------------------------------------------------------------------- /obj/intparse.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/obj/intparse.asm -------------------------------------------------------------------------------- /obj/listing.inc: -------------------------------------------------------------------------------- 1 | ; Dummy file -------------------------------------------------------------------------------- /obj/main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/obj/main.asm -------------------------------------------------------------------------------- /obj/memmgr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/obj/memmgr.asm -------------------------------------------------------------------------------- /obj/vidmgr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/obj/vidmgr.asm -------------------------------------------------------------------------------- /obj/x86debug.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/obj/x86debug.asm -------------------------------------------------------------------------------- /orig/386INIT.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/386INIT.ASM -------------------------------------------------------------------------------- /orig/386TRAP.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/386TRAP.ASM -------------------------------------------------------------------------------- /orig/COMIO.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/COMIO.ASM -------------------------------------------------------------------------------- /orig/DOSDUMP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/DOSDUMP.C -------------------------------------------------------------------------------- /orig/INTPARSE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/INTPARSE.C -------------------------------------------------------------------------------- /orig/MAIN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/MAIN.C -------------------------------------------------------------------------------- /orig/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/MAKEFILE -------------------------------------------------------------------------------- /orig/MEMMGR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/MEMMGR.C -------------------------------------------------------------------------------- /orig/REBOOT.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/REBOOT.ASM -------------------------------------------------------------------------------- /orig/V86INT.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/V86INT.ASM -------------------------------------------------------------------------------- /orig/V86IO.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/V86IO.ASM -------------------------------------------------------------------------------- /orig/VIDMGR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/VIDMGR.C -------------------------------------------------------------------------------- /orig/VIDSAVE.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/VIDSAVE.ASM -------------------------------------------------------------------------------- /orig/X86DEBUG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/X86DEBUG.C -------------------------------------------------------------------------------- /orig/bin/COMIO.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/bin/COMIO.OBJ -------------------------------------------------------------------------------- /orig/bin/DOSDUMP.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/bin/DOSDUMP.OBJ -------------------------------------------------------------------------------- /orig/bin/GETS.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/bin/GETS.OBJ -------------------------------------------------------------------------------- /orig/bin/INTPARSE.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/bin/INTPARSE.OBJ -------------------------------------------------------------------------------- /orig/bin/MAIN.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/bin/MAIN.OBJ -------------------------------------------------------------------------------- /orig/bin/MEMMGR.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/bin/MEMMGR.OBJ -------------------------------------------------------------------------------- /orig/bin/PRINTF.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/bin/PRINTF.OBJ -------------------------------------------------------------------------------- /orig/bin/REBOOT.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/bin/REBOOT.COM -------------------------------------------------------------------------------- /orig/bin/REBOOT.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/bin/REBOOT.MAP -------------------------------------------------------------------------------- /orig/bin/SPRINTF.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/bin/SPRINTF.OBJ -------------------------------------------------------------------------------- /orig/bin/SPY.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/bin/SPY.COM -------------------------------------------------------------------------------- /orig/bin/SPY.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/bin/SPY.MAP -------------------------------------------------------------------------------- /orig/bin/SPYOLD.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/bin/SPYOLD.COM -------------------------------------------------------------------------------- /orig/bin/SPYOLD.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/bin/SPYOLD.MAP -------------------------------------------------------------------------------- /orig/bin/STRING.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/bin/STRING.OBJ -------------------------------------------------------------------------------- /orig/bin/TEST.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/bin/TEST.COM -------------------------------------------------------------------------------- /orig/bin/TEST.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/bin/TEST.OBJ -------------------------------------------------------------------------------- /orig/bin/VIDMGR.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/bin/VIDMGR.OBJ -------------------------------------------------------------------------------- /orig/bin/VIDSAVE.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/bin/VIDSAVE.OBJ -------------------------------------------------------------------------------- /orig/bin/X86DEBUG.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/bin/X86DEBUG.OBJ -------------------------------------------------------------------------------- /orig/inc/386.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/386.H -------------------------------------------------------------------------------- /orig/inc/386.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/386.INC -------------------------------------------------------------------------------- /orig/inc/387.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/387.H -------------------------------------------------------------------------------- /orig/inc/387.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/387.INC -------------------------------------------------------------------------------- /orig/inc/ALL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/ALL.H -------------------------------------------------------------------------------- /orig/inc/ALL.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/ALL.INC -------------------------------------------------------------------------------- /orig/inc/BIOS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/BIOS.H -------------------------------------------------------------------------------- /orig/inc/BIOS.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/BIOS.INC -------------------------------------------------------------------------------- /orig/inc/CMOS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/CMOS.H -------------------------------------------------------------------------------- /orig/inc/CMOS.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/CMOS.INC -------------------------------------------------------------------------------- /orig/inc/COM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/COM.H -------------------------------------------------------------------------------- /orig/inc/COM.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/COM.INC -------------------------------------------------------------------------------- /orig/inc/DEBUG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/DEBUG.H -------------------------------------------------------------------------------- /orig/inc/DEBUG.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/DEBUG.INC -------------------------------------------------------------------------------- /orig/inc/DISK.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/DISK.H -------------------------------------------------------------------------------- /orig/inc/DISK.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/DISK.INC -------------------------------------------------------------------------------- /orig/inc/DOS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/DOS.H -------------------------------------------------------------------------------- /orig/inc/DOS.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/DOS.INC -------------------------------------------------------------------------------- /orig/inc/EMS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/EMS.H -------------------------------------------------------------------------------- /orig/inc/EMS.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/EMS.INC -------------------------------------------------------------------------------- /orig/inc/GLOBALS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/GLOBALS.H -------------------------------------------------------------------------------- /orig/inc/GLOBALS.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/GLOBALS.INC -------------------------------------------------------------------------------- /orig/inc/KBD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/KBD.H -------------------------------------------------------------------------------- /orig/inc/KBD.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/KBD.INC -------------------------------------------------------------------------------- /orig/inc/LIB.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/LIB.H -------------------------------------------------------------------------------- /orig/inc/LIB.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/LIB.INC -------------------------------------------------------------------------------- /orig/inc/PARSE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/PARSE.H -------------------------------------------------------------------------------- /orig/inc/PIC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/PIC.H -------------------------------------------------------------------------------- /orig/inc/PIC.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/PIC.INC -------------------------------------------------------------------------------- /orig/inc/SYM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/SYM.H -------------------------------------------------------------------------------- /orig/inc/TIMER.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/TIMER.H -------------------------------------------------------------------------------- /orig/inc/TIMER.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/TIMER.INC -------------------------------------------------------------------------------- /orig/inc/TYPES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/TYPES.H -------------------------------------------------------------------------------- /orig/inc/TYPES.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/TYPES.INC -------------------------------------------------------------------------------- /orig/inc/VIDEO.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/VIDEO.H -------------------------------------------------------------------------------- /orig/inc/VIDEO.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/VIDEO.INC -------------------------------------------------------------------------------- /orig/inc/X86.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/X86.H -------------------------------------------------------------------------------- /orig/inc/X86.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/inc/X86.INC -------------------------------------------------------------------------------- /orig/lib/GETS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/lib/GETS.C -------------------------------------------------------------------------------- /orig/lib/PRINTF.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/lib/PRINTF.C -------------------------------------------------------------------------------- /orig/lib/SPRINTF.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/lib/SPRINTF.C -------------------------------------------------------------------------------- /orig/lib/STRING.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/orig/lib/STRING.C -------------------------------------------------------------------------------- /reboot.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/reboot.com -------------------------------------------------------------------------------- /reboot.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/reboot.map -------------------------------------------------------------------------------- /tools/C1.ERR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/tools/C1.ERR -------------------------------------------------------------------------------- /tools/C13232.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/tools/C13232.EXE -------------------------------------------------------------------------------- /tools/C1XX3232.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/tools/C1XX3232.EXE -------------------------------------------------------------------------------- /tools/C23.ERR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/tools/C23.ERR -------------------------------------------------------------------------------- /tools/C23232.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/tools/C23232.EXE -------------------------------------------------------------------------------- /tools/CL.ERR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/tools/CL.ERR -------------------------------------------------------------------------------- /tools/CL32.MSG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/tools/CL32.MSG -------------------------------------------------------------------------------- /tools/CL3232.ERR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/tools/CL3232.ERR -------------------------------------------------------------------------------- /tools/CL3232.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/tools/CL3232.EXE -------------------------------------------------------------------------------- /tools/FIXASM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/tools/FIXASM.C -------------------------------------------------------------------------------- /tools/FIXASM.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/tools/FIXASM.EXE -------------------------------------------------------------------------------- /tools/H2INC.ERR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/tools/H2INC.ERR -------------------------------------------------------------------------------- /tools/H2INC.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/tools/H2INC.EXE -------------------------------------------------------------------------------- /tools/LINK.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/tools/LINK.EXE -------------------------------------------------------------------------------- /tools/ML.ERR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/tools/ML.ERR -------------------------------------------------------------------------------- /tools/ML.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/tools/ML.EXE -------------------------------------------------------------------------------- /vxd/386INIT.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/386INIT.ASM -------------------------------------------------------------------------------- /vxd/386TRAP.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/386TRAP.ASM -------------------------------------------------------------------------------- /vxd/COMIO.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/COMIO.ASM -------------------------------------------------------------------------------- /vxd/COMIO.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/COMIO.OBJ -------------------------------------------------------------------------------- /vxd/COPYA.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/COPYA.BAT -------------------------------------------------------------------------------- /vxd/DEPEND.MK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/DEPEND.MK -------------------------------------------------------------------------------- /vxd/DOSDUMP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/DOSDUMP.C -------------------------------------------------------------------------------- /vxd/DOSDUMP.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/DOSDUMP.OBJ -------------------------------------------------------------------------------- /vxd/DOSSERV.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/DOSSERV.ASM -------------------------------------------------------------------------------- /vxd/DOSSERV.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/DOSSERV.OBJ -------------------------------------------------------------------------------- /vxd/INC/386.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/386.H -------------------------------------------------------------------------------- /vxd/INC/386.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/386.INC -------------------------------------------------------------------------------- /vxd/INC/387.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/387.H -------------------------------------------------------------------------------- /vxd/INC/387.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/387.INC -------------------------------------------------------------------------------- /vxd/INC/ALL.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/ALL.H -------------------------------------------------------------------------------- /vxd/INC/ALL.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/ALL.INC -------------------------------------------------------------------------------- /vxd/INC/BASEDEF.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/BASEDEF.H -------------------------------------------------------------------------------- /vxd/INC/BIOS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/BIOS.H -------------------------------------------------------------------------------- /vxd/INC/BIOS.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/BIOS.INC -------------------------------------------------------------------------------- /vxd/INC/CMOS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/CMOS.H -------------------------------------------------------------------------------- /vxd/INC/CMOS.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/CMOS.INC -------------------------------------------------------------------------------- /vxd/INC/COM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/COM.H -------------------------------------------------------------------------------- /vxd/INC/COM.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/COM.INC -------------------------------------------------------------------------------- /vxd/INC/DEBUG.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/DEBUG.H -------------------------------------------------------------------------------- /vxd/INC/DEBUG.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/DEBUG.INC -------------------------------------------------------------------------------- /vxd/INC/DISK.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/DISK.H -------------------------------------------------------------------------------- /vxd/INC/DISK.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/DISK.INC -------------------------------------------------------------------------------- /vxd/INC/DOS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/DOS.H -------------------------------------------------------------------------------- /vxd/INC/DOS.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/DOS.INC -------------------------------------------------------------------------------- /vxd/INC/EMS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/EMS.H -------------------------------------------------------------------------------- /vxd/INC/EMS.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/EMS.INC -------------------------------------------------------------------------------- /vxd/INC/GLOBALS.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/GLOBALS.H -------------------------------------------------------------------------------- /vxd/INC/GLOBALS.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/GLOBALS.INC -------------------------------------------------------------------------------- /vxd/INC/KBD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/KBD.H -------------------------------------------------------------------------------- /vxd/INC/KBD.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/KBD.INC -------------------------------------------------------------------------------- /vxd/INC/LIB.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/LIB.H -------------------------------------------------------------------------------- /vxd/INC/LIB.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/LIB.INC -------------------------------------------------------------------------------- /vxd/INC/MRCI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/MRCI.H -------------------------------------------------------------------------------- /vxd/INC/MULT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/MULT.H -------------------------------------------------------------------------------- /vxd/INC/PARSE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/PARSE.H -------------------------------------------------------------------------------- /vxd/INC/PIC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/PIC.H -------------------------------------------------------------------------------- /vxd/INC/PIC.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/PIC.INC -------------------------------------------------------------------------------- /vxd/INC/SYM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/SYM.H -------------------------------------------------------------------------------- /vxd/INC/TIMER.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/TIMER.H -------------------------------------------------------------------------------- /vxd/INC/TIMER.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/TIMER.INC -------------------------------------------------------------------------------- /vxd/INC/TYPES.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/TYPES.H -------------------------------------------------------------------------------- /vxd/INC/TYPES.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/TYPES.INC -------------------------------------------------------------------------------- /vxd/INC/VIDEO.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/VIDEO.H -------------------------------------------------------------------------------- /vxd/INC/VIDEO.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/VIDEO.INC -------------------------------------------------------------------------------- /vxd/INC/WIN386.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/WIN386.H -------------------------------------------------------------------------------- /vxd/INC/X86.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/X86.H -------------------------------------------------------------------------------- /vxd/INC/X86.INC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INC/X86.INC -------------------------------------------------------------------------------- /vxd/INTPARSE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INTPARSE.C -------------------------------------------------------------------------------- /vxd/INTPARSE.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/INTPARSE.OBJ -------------------------------------------------------------------------------- /vxd/LIB/GETS.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/LIB/GETS.C -------------------------------------------------------------------------------- /vxd/LIB/GETS.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/LIB/GETS.OBJ -------------------------------------------------------------------------------- /vxd/LIB/PRINTF.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/LIB/PRINTF.C -------------------------------------------------------------------------------- /vxd/LIB/PRINTF.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/LIB/PRINTF.OBJ -------------------------------------------------------------------------------- /vxd/LIB/SPRINTF.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/LIB/SPRINTF.C -------------------------------------------------------------------------------- /vxd/LIB/SPRINTF.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/LIB/SPRINTF.OBJ -------------------------------------------------------------------------------- /vxd/LIB/STRING.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/LIB/STRING.C -------------------------------------------------------------------------------- /vxd/LIB/STRING.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/LIB/STRING.OBJ -------------------------------------------------------------------------------- /vxd/MAIN.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/MAIN.C -------------------------------------------------------------------------------- /vxd/MAIN.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/MAIN.OBJ -------------------------------------------------------------------------------- /vxd/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/MAKEFILE -------------------------------------------------------------------------------- /vxd/MEMMGR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/MEMMGR.C -------------------------------------------------------------------------------- /vxd/MEMMGR.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/MEMMGR.OBJ -------------------------------------------------------------------------------- /vxd/MK.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/MK.BAT -------------------------------------------------------------------------------- /vxd/OBJ/386INIT.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/OBJ/386INIT.OBJ -------------------------------------------------------------------------------- /vxd/OBJ/386TRAP.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/OBJ/386TRAP.OBJ -------------------------------------------------------------------------------- /vxd/OBJ/COMIO.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/OBJ/COMIO.OBJ -------------------------------------------------------------------------------- /vxd/OBJ/DOSDUMP.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/OBJ/DOSDUMP.OBJ -------------------------------------------------------------------------------- /vxd/OBJ/GETS.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/OBJ/GETS.OBJ -------------------------------------------------------------------------------- /vxd/OBJ/INTPARSE.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/OBJ/INTPARSE.OBJ -------------------------------------------------------------------------------- /vxd/OBJ/MAIN.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/OBJ/MAIN.OBJ -------------------------------------------------------------------------------- /vxd/OBJ/MEMMGR.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/OBJ/MEMMGR.OBJ -------------------------------------------------------------------------------- /vxd/OBJ/PRINTF.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/OBJ/PRINTF.OBJ -------------------------------------------------------------------------------- /vxd/OBJ/REBOOT.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/OBJ/REBOOT.OBJ -------------------------------------------------------------------------------- /vxd/OBJ/SPRINTF.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/OBJ/SPRINTF.OBJ -------------------------------------------------------------------------------- /vxd/OBJ/STRING.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/OBJ/STRING.OBJ -------------------------------------------------------------------------------- /vxd/OBJ/V86INT.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/OBJ/V86INT.OBJ -------------------------------------------------------------------------------- /vxd/OBJ/V86IO.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/OBJ/V86IO.OBJ -------------------------------------------------------------------------------- /vxd/OBJ/VIDMGR.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/OBJ/VIDMGR.OBJ -------------------------------------------------------------------------------- /vxd/OBJ/VIDSAVE.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/OBJ/VIDSAVE.OBJ -------------------------------------------------------------------------------- /vxd/OBJ/X86DEBUG.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/OBJ/X86DEBUG.OBJ -------------------------------------------------------------------------------- /vxd/REBOOT.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/REBOOT.ASM -------------------------------------------------------------------------------- /vxd/REBOOT.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/REBOOT.COM -------------------------------------------------------------------------------- /vxd/REBOOT.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/REBOOT.MAP -------------------------------------------------------------------------------- /vxd/SPY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/SPY -------------------------------------------------------------------------------- /vxd/SPY.386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/SPY.386 -------------------------------------------------------------------------------- /vxd/SPY.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/SPY.COM -------------------------------------------------------------------------------- /vxd/SPY.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/SPY.MAP -------------------------------------------------------------------------------- /vxd/SPY.MK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/SPY.MK -------------------------------------------------------------------------------- /vxd/SPY.SYM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/SPY.SYM -------------------------------------------------------------------------------- /vxd/SPYCOM.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/SPYCOM.MAP -------------------------------------------------------------------------------- /vxd/SPYINIT.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/SPYINIT.ASM -------------------------------------------------------------------------------- /vxd/SPYINIT.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/SPYINIT.OBJ -------------------------------------------------------------------------------- /vxd/SPYKBD.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/SPYKBD.ASM -------------------------------------------------------------------------------- /vxd/SPYKBD.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/SPYKBD.OBJ -------------------------------------------------------------------------------- /vxd/SPYOLD.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/SPYOLD.COM -------------------------------------------------------------------------------- /vxd/SPYOLD.MAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/SPYOLD.MAP -------------------------------------------------------------------------------- /vxd/SPYTRAP.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/SPYTRAP.ASM -------------------------------------------------------------------------------- /vxd/SPYTRAP.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/SPYTRAP.OBJ -------------------------------------------------------------------------------- /vxd/SYM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/SYM.C -------------------------------------------------------------------------------- /vxd/SYM.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/SYM.EXE -------------------------------------------------------------------------------- /vxd/SYM.SYM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/SYM.SYM -------------------------------------------------------------------------------- /vxd/SYMLOAD.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/SYMLOAD.C -------------------------------------------------------------------------------- /vxd/SYMLOAD.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/SYMLOAD.OBJ -------------------------------------------------------------------------------- /vxd/TEST.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/TEST.ASM -------------------------------------------------------------------------------- /vxd/TEST.COM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/TEST.COM -------------------------------------------------------------------------------- /vxd/TEST.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/TEST.OBJ -------------------------------------------------------------------------------- /vxd/V86INT.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/V86INT.ASM -------------------------------------------------------------------------------- /vxd/V86IO.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/V86IO.ASM -------------------------------------------------------------------------------- /vxd/VIDMGR.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/VIDMGR.C -------------------------------------------------------------------------------- /vxd/VIDMGR.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/VIDMGR.OBJ -------------------------------------------------------------------------------- /vxd/VIDSAVE.ASM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/VIDSAVE.ASM -------------------------------------------------------------------------------- /vxd/VIDSAVE.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/VIDSAVE.OBJ -------------------------------------------------------------------------------- /vxd/VMMDUMP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/VMMDUMP.C -------------------------------------------------------------------------------- /vxd/VMMDUMP.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/VMMDUMP.OBJ -------------------------------------------------------------------------------- /vxd/VXDDUMP.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/VXDDUMP.C -------------------------------------------------------------------------------- /vxd/VXDDUMP.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/VXDDUMP.OBJ -------------------------------------------------------------------------------- /vxd/X86DEBUG.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/X86DEBUG.C -------------------------------------------------------------------------------- /vxd/X86DEBUG.OBJ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffpar/spy/HEAD/vxd/X86DEBUG.OBJ --------------------------------------------------------------------------------