├── .gitignore ├── README.md ├── bochs-conf-file └── bochsrc.txt ├── os-test ├── graphics │ └── showchar.asm └── section_test │ └── section_test.asm └── x86 ├── c04 └── 4-2.asm ├── c05 └── c05_mbr.asm ├── c06 ├── 6.7.asm └── c06_mbr.asm ├── c07 └── c07_mbr.asm ├── c08 ├── c08.asm └── c08_mbr.asm ├── c09 ├── c09_1.asm └── c09_2.asm ├── c11 └── c11_mbr.asm ├── c12 └── c12_mbr.asm ├── c13 ├── c13.asm ├── c13_core.asm ├── c13_mbr.asm └── diskdata.txt ├── c14 └── c14_core.asm ├── c15 ├── c15.asm └── c15_core.asm ├── c16 ├── c16.asm └── c16_core.asm ├── c17 ├── c17-1.asm ├── c17-2.asm ├── c17_core.asm └── c17_mbr.asm └── c18 ├── c18_core.asm └── c18_mbr.asm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/README.md -------------------------------------------------------------------------------- /bochs-conf-file/bochsrc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/bochs-conf-file/bochsrc.txt -------------------------------------------------------------------------------- /os-test/graphics/showchar.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/os-test/graphics/showchar.asm -------------------------------------------------------------------------------- /os-test/section_test/section_test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/os-test/section_test/section_test.asm -------------------------------------------------------------------------------- /x86/c04/4-2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c04/4-2.asm -------------------------------------------------------------------------------- /x86/c05/c05_mbr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c05/c05_mbr.asm -------------------------------------------------------------------------------- /x86/c06/6.7.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c06/6.7.asm -------------------------------------------------------------------------------- /x86/c06/c06_mbr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c06/c06_mbr.asm -------------------------------------------------------------------------------- /x86/c07/c07_mbr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c07/c07_mbr.asm -------------------------------------------------------------------------------- /x86/c08/c08.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c08/c08.asm -------------------------------------------------------------------------------- /x86/c08/c08_mbr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c08/c08_mbr.asm -------------------------------------------------------------------------------- /x86/c09/c09_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c09/c09_1.asm -------------------------------------------------------------------------------- /x86/c09/c09_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c09/c09_2.asm -------------------------------------------------------------------------------- /x86/c11/c11_mbr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c11/c11_mbr.asm -------------------------------------------------------------------------------- /x86/c12/c12_mbr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c12/c12_mbr.asm -------------------------------------------------------------------------------- /x86/c13/c13.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c13/c13.asm -------------------------------------------------------------------------------- /x86/c13/c13_core.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c13/c13_core.asm -------------------------------------------------------------------------------- /x86/c13/c13_mbr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c13/c13_mbr.asm -------------------------------------------------------------------------------- /x86/c13/diskdata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c13/diskdata.txt -------------------------------------------------------------------------------- /x86/c14/c14_core.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c14/c14_core.asm -------------------------------------------------------------------------------- /x86/c15/c15.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c15/c15.asm -------------------------------------------------------------------------------- /x86/c15/c15_core.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c15/c15_core.asm -------------------------------------------------------------------------------- /x86/c16/c16.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c16/c16.asm -------------------------------------------------------------------------------- /x86/c16/c16_core.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c16/c16_core.asm -------------------------------------------------------------------------------- /x86/c17/c17-1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c17/c17-1.asm -------------------------------------------------------------------------------- /x86/c17/c17-2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c17/c17-2.asm -------------------------------------------------------------------------------- /x86/c17/c17_core.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c17/c17_core.asm -------------------------------------------------------------------------------- /x86/c17/c17_mbr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c17/c17_mbr.asm -------------------------------------------------------------------------------- /x86/c18/c18_core.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c18/c18_core.asm -------------------------------------------------------------------------------- /x86/c18/c18_mbr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jasey/mac-x86asm-real_mode_to_protect_mode/HEAD/x86/c18/c18_mbr.asm --------------------------------------------------------------------------------