├── .gitignore ├── Makefile ├── README.md ├── bios-bochs ├── bitwise.c ├── config.h ├── cpu.c ├── frontends └── text │ └── ui.c ├── include ├── bitwise.h ├── cpu.h ├── disasm.h ├── errors.h ├── instruction.h ├── loaders.h └── ui.h ├── loaders.c ├── main.c └── minix-floppy.img /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | architecture-notes 3 | *.o 4 | 8086 5 | core.dmp 6 | .bochsrc 7 | lib 8 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highwaycoder/8086/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highwaycoder/8086/HEAD/README.md -------------------------------------------------------------------------------- /bios-bochs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highwaycoder/8086/HEAD/bios-bochs -------------------------------------------------------------------------------- /bitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highwaycoder/8086/HEAD/bitwise.c -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highwaycoder/8086/HEAD/config.h -------------------------------------------------------------------------------- /cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highwaycoder/8086/HEAD/cpu.c -------------------------------------------------------------------------------- /frontends/text/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highwaycoder/8086/HEAD/frontends/text/ui.c -------------------------------------------------------------------------------- /include/bitwise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highwaycoder/8086/HEAD/include/bitwise.h -------------------------------------------------------------------------------- /include/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highwaycoder/8086/HEAD/include/cpu.h -------------------------------------------------------------------------------- /include/disasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highwaycoder/8086/HEAD/include/disasm.h -------------------------------------------------------------------------------- /include/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highwaycoder/8086/HEAD/include/errors.h -------------------------------------------------------------------------------- /include/instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highwaycoder/8086/HEAD/include/instruction.h -------------------------------------------------------------------------------- /include/loaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highwaycoder/8086/HEAD/include/loaders.h -------------------------------------------------------------------------------- /include/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highwaycoder/8086/HEAD/include/ui.h -------------------------------------------------------------------------------- /loaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highwaycoder/8086/HEAD/loaders.c -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highwaycoder/8086/HEAD/main.c -------------------------------------------------------------------------------- /minix-floppy.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highwaycoder/8086/HEAD/minix-floppy.img --------------------------------------------------------------------------------