├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── arch └── x86_64 │ ├── boot.S │ ├── boot.h │ └── multiboot.h ├── iso ├── menu.lst └── stage2_eltorito ├── kernel.cpp ├── kernel.h └── link └── kernel.ld /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/os64/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/os64/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/os64/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/os64/HEAD/README.md -------------------------------------------------------------------------------- /arch/x86_64/boot.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/os64/HEAD/arch/x86_64/boot.S -------------------------------------------------------------------------------- /arch/x86_64/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/os64/HEAD/arch/x86_64/boot.h -------------------------------------------------------------------------------- /arch/x86_64/multiboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/os64/HEAD/arch/x86_64/multiboot.h -------------------------------------------------------------------------------- /iso/menu.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/os64/HEAD/iso/menu.lst -------------------------------------------------------------------------------- /iso/stage2_eltorito: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/os64/HEAD/iso/stage2_eltorito -------------------------------------------------------------------------------- /kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/os64/HEAD/kernel.cpp -------------------------------------------------------------------------------- /kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/os64/HEAD/kernel.h -------------------------------------------------------------------------------- /link/kernel.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eteran/os64/HEAD/link/kernel.ld --------------------------------------------------------------------------------