├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── bochs.conf ├── docs └── screenshots │ ├── screenshot1.jpg │ └── screenshot2.jpg └── src ├── bus.c ├── bus.h ├── cpu.c ├── cpu.h ├── disk.c ├── disk.h ├── framebuffer.c ├── framebuffer.h ├── keyboard.c ├── keyboard.h ├── main.c ├── mmu.c ├── mmu.h ├── mouse.c ├── mouse.h ├── serial.c └── serial.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/README.md -------------------------------------------------------------------------------- /bochs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/bochs.conf -------------------------------------------------------------------------------- /docs/screenshots/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/docs/screenshots/screenshot1.jpg -------------------------------------------------------------------------------- /docs/screenshots/screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/docs/screenshots/screenshot2.jpg -------------------------------------------------------------------------------- /src/bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/src/bus.c -------------------------------------------------------------------------------- /src/bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/src/bus.h -------------------------------------------------------------------------------- /src/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/src/cpu.c -------------------------------------------------------------------------------- /src/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/src/cpu.h -------------------------------------------------------------------------------- /src/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/src/disk.c -------------------------------------------------------------------------------- /src/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/src/disk.h -------------------------------------------------------------------------------- /src/framebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/src/framebuffer.c -------------------------------------------------------------------------------- /src/framebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/src/framebuffer.h -------------------------------------------------------------------------------- /src/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/src/keyboard.c -------------------------------------------------------------------------------- /src/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/src/keyboard.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/src/main.c -------------------------------------------------------------------------------- /src/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/src/mmu.c -------------------------------------------------------------------------------- /src/mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/src/mmu.h -------------------------------------------------------------------------------- /src/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/src/mouse.c -------------------------------------------------------------------------------- /src/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/src/mouse.h -------------------------------------------------------------------------------- /src/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/src/serial.c -------------------------------------------------------------------------------- /src/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox32-arch/fox86/HEAD/src/serial.h --------------------------------------------------------------------------------