├── bin ├── attrib.exe ├── choice.com ├── comp.com ├── crc.exe ├── deltree.exe ├── driver.sys ├── edlin.com ├── ega.cpi ├── exe2bin.com ├── fc.exe ├── find.com ├── graftabl.com ├── label.com ├── more.com ├── replace.exe ├── sort.com └── tree.exe ├── chcp.a86 ├── cmd ├── attrib │ ├── Makefile │ └── attrib.c ├── choice │ ├── Makefile │ └── choice.a86 ├── comp │ ├── Makefile │ └── comp.c ├── crc │ ├── Makefile │ └── crc.c ├── deltree │ ├── Makefile │ └── deltree.c ├── edlin │ ├── Makefile │ ├── Makefile.ext │ ├── dossym.inc │ ├── edlin.asm │ ├── edlin.wln │ ├── edlmes.asm │ ├── edlproc.asm │ ├── license.txt │ └── readme.txt ├── exe2bin │ ├── Makefile │ └── exe2bin.a86 ├── fc │ ├── Makefile │ ├── error.c │ ├── fc.c │ ├── fc.h │ ├── fgetl.c │ ├── messages.c │ ├── move.c │ ├── ntoi.c │ ├── string.c │ ├── tools.h │ ├── ttypes.h │ └── update.c ├── find │ ├── Makefile │ └── find.a86 ├── graftabl │ ├── Makefile │ └── graftabl.a86 ├── label │ ├── Makefile │ └── label.a86 ├── more │ ├── Makefile │ └── more.a86 ├── replace │ ├── Makefile │ └── replace.c ├── sort │ ├── Makefile │ └── sort.a86 └── tree │ ├── Makefile │ └── tree.c ├── drv ├── driver │ ├── Makefile │ ├── driver.asm │ └── msbds.inc └── egacpi │ ├── Makefile │ ├── cp437cga.i86 │ ├── cp437ega.i86 │ ├── cp437vga.i86 │ ├── cp850cga.i86 │ ├── cp850ega.i86 │ ├── cp850vga.i86 │ ├── cp852cga.i86 │ ├── cp852ega.i86 │ ├── cp852vga.i86 │ ├── cp855cga.i86 │ ├── cp855ega.i86 │ ├── cp855vga.i86 │ ├── cp860cga.i86 │ ├── cp860ega.i86 │ ├── cp860vga.i86 │ ├── cp863cga.i86 │ ├── cp863ega.i86 │ ├── cp863vga.i86 │ └── egacpi.a86 ├── exper ├── ansi │ └── ansi.a86 ├── command │ └── command.a86 ├── debug │ ├── Makefile │ ├── Makefile.ext │ ├── debasm.asm │ ├── debcom1.asm │ ├── debcom2.asm │ ├── debconst.asm │ ├── debdata.asm │ ├── debems.txt │ ├── debequ.inc │ ├── debmes.asm │ ├── debuasm.asm │ ├── debug.asm │ ├── debug.wln │ ├── dossym.inc │ ├── license.txt │ └── readme.txt ├── fc │ ├── Makefile │ └── fc.c ├── fdisk │ ├── fdisk.c │ └── mbrboot.a86 ├── format │ └── format.c ├── helpcom │ ├── Makefile │ ├── extern.h │ ├── main.c │ ├── messages.h │ └── tty.c ├── mem │ └── mem.c ├── mode │ ├── modecom.c │ ├── modekey.c │ ├── modetty.c │ └── readme.txt ├── move │ ├── Makefile │ └── move.a86 ├── readme.txt ├── restore │ ├── Makefile │ └── restore.c └── xcopy │ └── xcopy.a86 ├── fntcpyrt.txt ├── license.txt └── readme.txt /bin/attrib.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/bin/attrib.exe -------------------------------------------------------------------------------- /bin/choice.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/bin/choice.com -------------------------------------------------------------------------------- /bin/comp.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/bin/comp.com -------------------------------------------------------------------------------- /bin/crc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/bin/crc.exe -------------------------------------------------------------------------------- /bin/deltree.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/bin/deltree.exe -------------------------------------------------------------------------------- /bin/driver.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/bin/driver.sys -------------------------------------------------------------------------------- /bin/edlin.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/bin/edlin.com -------------------------------------------------------------------------------- /bin/ega.cpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/bin/ega.cpi -------------------------------------------------------------------------------- /bin/exe2bin.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/bin/exe2bin.com -------------------------------------------------------------------------------- /bin/fc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/bin/fc.exe -------------------------------------------------------------------------------- /bin/find.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/bin/find.com -------------------------------------------------------------------------------- /bin/graftabl.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/bin/graftabl.com -------------------------------------------------------------------------------- /bin/label.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/bin/label.com -------------------------------------------------------------------------------- /bin/more.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/bin/more.com -------------------------------------------------------------------------------- /bin/replace.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/bin/replace.exe -------------------------------------------------------------------------------- /bin/sort.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/bin/sort.com -------------------------------------------------------------------------------- /bin/tree.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/bin/tree.exe -------------------------------------------------------------------------------- /chcp.a86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/chcp.a86 -------------------------------------------------------------------------------- /cmd/attrib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/attrib/Makefile -------------------------------------------------------------------------------- /cmd/attrib/attrib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/attrib/attrib.c -------------------------------------------------------------------------------- /cmd/choice/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/choice/Makefile -------------------------------------------------------------------------------- /cmd/choice/choice.a86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/choice/choice.a86 -------------------------------------------------------------------------------- /cmd/comp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/comp/Makefile -------------------------------------------------------------------------------- /cmd/comp/comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/comp/comp.c -------------------------------------------------------------------------------- /cmd/crc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/crc/Makefile -------------------------------------------------------------------------------- /cmd/crc/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/crc/crc.c -------------------------------------------------------------------------------- /cmd/deltree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/deltree/Makefile -------------------------------------------------------------------------------- /cmd/deltree/deltree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/deltree/deltree.c -------------------------------------------------------------------------------- /cmd/edlin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/edlin/Makefile -------------------------------------------------------------------------------- /cmd/edlin/Makefile.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/edlin/Makefile.ext -------------------------------------------------------------------------------- /cmd/edlin/dossym.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/edlin/dossym.inc -------------------------------------------------------------------------------- /cmd/edlin/edlin.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/edlin/edlin.asm -------------------------------------------------------------------------------- /cmd/edlin/edlin.wln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/edlin/edlin.wln -------------------------------------------------------------------------------- /cmd/edlin/edlmes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/edlin/edlmes.asm -------------------------------------------------------------------------------- /cmd/edlin/edlproc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/edlin/edlproc.asm -------------------------------------------------------------------------------- /cmd/edlin/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/edlin/license.txt -------------------------------------------------------------------------------- /cmd/edlin/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/edlin/readme.txt -------------------------------------------------------------------------------- /cmd/exe2bin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/exe2bin/Makefile -------------------------------------------------------------------------------- /cmd/exe2bin/exe2bin.a86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/exe2bin/exe2bin.a86 -------------------------------------------------------------------------------- /cmd/fc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/fc/Makefile -------------------------------------------------------------------------------- /cmd/fc/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/fc/error.c -------------------------------------------------------------------------------- /cmd/fc/fc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/fc/fc.c -------------------------------------------------------------------------------- /cmd/fc/fc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/fc/fc.h -------------------------------------------------------------------------------- /cmd/fc/fgetl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/fc/fgetl.c -------------------------------------------------------------------------------- /cmd/fc/messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/fc/messages.c -------------------------------------------------------------------------------- /cmd/fc/move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/fc/move.c -------------------------------------------------------------------------------- /cmd/fc/ntoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/fc/ntoi.c -------------------------------------------------------------------------------- /cmd/fc/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/fc/string.c -------------------------------------------------------------------------------- /cmd/fc/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/fc/tools.h -------------------------------------------------------------------------------- /cmd/fc/ttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/fc/ttypes.h -------------------------------------------------------------------------------- /cmd/fc/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/fc/update.c -------------------------------------------------------------------------------- /cmd/find/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/find/Makefile -------------------------------------------------------------------------------- /cmd/find/find.a86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/find/find.a86 -------------------------------------------------------------------------------- /cmd/graftabl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/graftabl/Makefile -------------------------------------------------------------------------------- /cmd/graftabl/graftabl.a86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/graftabl/graftabl.a86 -------------------------------------------------------------------------------- /cmd/label/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/label/Makefile -------------------------------------------------------------------------------- /cmd/label/label.a86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/label/label.a86 -------------------------------------------------------------------------------- /cmd/more/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/more/Makefile -------------------------------------------------------------------------------- /cmd/more/more.a86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/more/more.a86 -------------------------------------------------------------------------------- /cmd/replace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/replace/Makefile -------------------------------------------------------------------------------- /cmd/replace/replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/replace/replace.c -------------------------------------------------------------------------------- /cmd/sort/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/sort/Makefile -------------------------------------------------------------------------------- /cmd/sort/sort.a86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/sort/sort.a86 -------------------------------------------------------------------------------- /cmd/tree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/tree/Makefile -------------------------------------------------------------------------------- /cmd/tree/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/cmd/tree/tree.c -------------------------------------------------------------------------------- /drv/driver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/driver/Makefile -------------------------------------------------------------------------------- /drv/driver/driver.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/driver/driver.asm -------------------------------------------------------------------------------- /drv/driver/msbds.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/driver/msbds.inc -------------------------------------------------------------------------------- /drv/egacpi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/egacpi/Makefile -------------------------------------------------------------------------------- /drv/egacpi/cp437cga.i86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/egacpi/cp437cga.i86 -------------------------------------------------------------------------------- /drv/egacpi/cp437ega.i86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/egacpi/cp437ega.i86 -------------------------------------------------------------------------------- /drv/egacpi/cp437vga.i86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/egacpi/cp437vga.i86 -------------------------------------------------------------------------------- /drv/egacpi/cp850cga.i86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/egacpi/cp850cga.i86 -------------------------------------------------------------------------------- /drv/egacpi/cp850ega.i86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/egacpi/cp850ega.i86 -------------------------------------------------------------------------------- /drv/egacpi/cp850vga.i86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/egacpi/cp850vga.i86 -------------------------------------------------------------------------------- /drv/egacpi/cp852cga.i86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/egacpi/cp852cga.i86 -------------------------------------------------------------------------------- /drv/egacpi/cp852ega.i86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/egacpi/cp852ega.i86 -------------------------------------------------------------------------------- /drv/egacpi/cp852vga.i86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/egacpi/cp852vga.i86 -------------------------------------------------------------------------------- /drv/egacpi/cp855cga.i86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/egacpi/cp855cga.i86 -------------------------------------------------------------------------------- /drv/egacpi/cp855ega.i86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/egacpi/cp855ega.i86 -------------------------------------------------------------------------------- /drv/egacpi/cp855vga.i86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/egacpi/cp855vga.i86 -------------------------------------------------------------------------------- /drv/egacpi/cp860cga.i86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/egacpi/cp860cga.i86 -------------------------------------------------------------------------------- /drv/egacpi/cp860ega.i86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/egacpi/cp860ega.i86 -------------------------------------------------------------------------------- /drv/egacpi/cp860vga.i86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/egacpi/cp860vga.i86 -------------------------------------------------------------------------------- /drv/egacpi/cp863cga.i86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/egacpi/cp863cga.i86 -------------------------------------------------------------------------------- /drv/egacpi/cp863ega.i86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/egacpi/cp863ega.i86 -------------------------------------------------------------------------------- /drv/egacpi/cp863vga.i86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/egacpi/cp863vga.i86 -------------------------------------------------------------------------------- /drv/egacpi/egacpi.a86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/drv/egacpi/egacpi.a86 -------------------------------------------------------------------------------- /exper/ansi/ansi.a86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/ansi/ansi.a86 -------------------------------------------------------------------------------- /exper/command/command.a86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/command/command.a86 -------------------------------------------------------------------------------- /exper/debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/debug/Makefile -------------------------------------------------------------------------------- /exper/debug/Makefile.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/debug/Makefile.ext -------------------------------------------------------------------------------- /exper/debug/debasm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/debug/debasm.asm -------------------------------------------------------------------------------- /exper/debug/debcom1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/debug/debcom1.asm -------------------------------------------------------------------------------- /exper/debug/debcom2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/debug/debcom2.asm -------------------------------------------------------------------------------- /exper/debug/debconst.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/debug/debconst.asm -------------------------------------------------------------------------------- /exper/debug/debdata.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/debug/debdata.asm -------------------------------------------------------------------------------- /exper/debug/debems.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/debug/debems.txt -------------------------------------------------------------------------------- /exper/debug/debequ.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/debug/debequ.inc -------------------------------------------------------------------------------- /exper/debug/debmes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/debug/debmes.asm -------------------------------------------------------------------------------- /exper/debug/debuasm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/debug/debuasm.asm -------------------------------------------------------------------------------- /exper/debug/debug.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/debug/debug.asm -------------------------------------------------------------------------------- /exper/debug/debug.wln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/debug/debug.wln -------------------------------------------------------------------------------- /exper/debug/dossym.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/debug/dossym.inc -------------------------------------------------------------------------------- /exper/debug/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/debug/license.txt -------------------------------------------------------------------------------- /exper/debug/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/debug/readme.txt -------------------------------------------------------------------------------- /exper/fc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/fc/Makefile -------------------------------------------------------------------------------- /exper/fc/fc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/fc/fc.c -------------------------------------------------------------------------------- /exper/fdisk/fdisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/fdisk/fdisk.c -------------------------------------------------------------------------------- /exper/fdisk/mbrboot.a86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/fdisk/mbrboot.a86 -------------------------------------------------------------------------------- /exper/format/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/format/format.c -------------------------------------------------------------------------------- /exper/helpcom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/helpcom/Makefile -------------------------------------------------------------------------------- /exper/helpcom/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/helpcom/extern.h -------------------------------------------------------------------------------- /exper/helpcom/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/helpcom/main.c -------------------------------------------------------------------------------- /exper/helpcom/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/helpcom/messages.h -------------------------------------------------------------------------------- /exper/helpcom/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/helpcom/tty.c -------------------------------------------------------------------------------- /exper/mem/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/mem/mem.c -------------------------------------------------------------------------------- /exper/mode/modecom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/mode/modecom.c -------------------------------------------------------------------------------- /exper/mode/modekey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/mode/modekey.c -------------------------------------------------------------------------------- /exper/mode/modetty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/mode/modetty.c -------------------------------------------------------------------------------- /exper/mode/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/mode/readme.txt -------------------------------------------------------------------------------- /exper/move/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/move/Makefile -------------------------------------------------------------------------------- /exper/move/move.a86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/move/move.a86 -------------------------------------------------------------------------------- /exper/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/readme.txt -------------------------------------------------------------------------------- /exper/restore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/restore/Makefile -------------------------------------------------------------------------------- /exper/restore/restore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/restore/restore.c -------------------------------------------------------------------------------- /exper/xcopy/xcopy.a86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/exper/xcopy/xcopy.a86 -------------------------------------------------------------------------------- /fntcpyrt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/fntcpyrt.txt -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/license.txt -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buricco/doslite/HEAD/readme.txt --------------------------------------------------------------------------------