├── 8086tiny.c ├── Makefile ├── README.md ├── bios ├── bios_source └── bios.asm ├── docs ├── 8086tiny.css ├── doc.html └── images │ ├── button_active.gif │ ├── button_default.gif │ ├── logo.gif │ ├── templatemo_bg.gif │ ├── templatemo_content_bg.gif │ ├── templatemo_footer_bg.gif │ ├── templatemo_header_bg.gif │ ├── templatemo_side_bg.gif │ └── templatemo_top_bg.gif ├── fd.img ├── license.txt └── runme /8086tiny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriancable/8086tiny/HEAD/8086tiny.c -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriancable/8086tiny/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriancable/8086tiny/HEAD/README.md -------------------------------------------------------------------------------- /bios: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriancable/8086tiny/HEAD/bios -------------------------------------------------------------------------------- /bios_source/bios.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriancable/8086tiny/HEAD/bios_source/bios.asm -------------------------------------------------------------------------------- /docs/8086tiny.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriancable/8086tiny/HEAD/docs/8086tiny.css -------------------------------------------------------------------------------- /docs/doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriancable/8086tiny/HEAD/docs/doc.html -------------------------------------------------------------------------------- /docs/images/button_active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriancable/8086tiny/HEAD/docs/images/button_active.gif -------------------------------------------------------------------------------- /docs/images/button_default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriancable/8086tiny/HEAD/docs/images/button_default.gif -------------------------------------------------------------------------------- /docs/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriancable/8086tiny/HEAD/docs/images/logo.gif -------------------------------------------------------------------------------- /docs/images/templatemo_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriancable/8086tiny/HEAD/docs/images/templatemo_bg.gif -------------------------------------------------------------------------------- /docs/images/templatemo_content_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriancable/8086tiny/HEAD/docs/images/templatemo_content_bg.gif -------------------------------------------------------------------------------- /docs/images/templatemo_footer_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriancable/8086tiny/HEAD/docs/images/templatemo_footer_bg.gif -------------------------------------------------------------------------------- /docs/images/templatemo_header_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriancable/8086tiny/HEAD/docs/images/templatemo_header_bg.gif -------------------------------------------------------------------------------- /docs/images/templatemo_side_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriancable/8086tiny/HEAD/docs/images/templatemo_side_bg.gif -------------------------------------------------------------------------------- /docs/images/templatemo_top_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriancable/8086tiny/HEAD/docs/images/templatemo_top_bg.gif -------------------------------------------------------------------------------- /fd.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriancable/8086tiny/HEAD/fd.img -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriancable/8086tiny/HEAD/license.txt -------------------------------------------------------------------------------- /runme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adriancable/8086tiny/HEAD/runme --------------------------------------------------------------------------------