├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── docs └── screenshots │ └── helloworld.png └── src ├── framebuffer.c ├── framebuffer.h ├── keyboard.c ├── keyboard.h ├── main.c ├── mul128.h ├── screen.c ├── screen.h ├── semu.c └── semu.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpineSystem/vulpinesystem/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpineSystem/vulpinesystem/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpineSystem/vulpinesystem/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpineSystem/vulpinesystem/HEAD/README.md -------------------------------------------------------------------------------- /docs/screenshots/helloworld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpineSystem/vulpinesystem/HEAD/docs/screenshots/helloworld.png -------------------------------------------------------------------------------- /src/framebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpineSystem/vulpinesystem/HEAD/src/framebuffer.c -------------------------------------------------------------------------------- /src/framebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpineSystem/vulpinesystem/HEAD/src/framebuffer.h -------------------------------------------------------------------------------- /src/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpineSystem/vulpinesystem/HEAD/src/keyboard.c -------------------------------------------------------------------------------- /src/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpineSystem/vulpinesystem/HEAD/src/keyboard.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpineSystem/vulpinesystem/HEAD/src/main.c -------------------------------------------------------------------------------- /src/mul128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpineSystem/vulpinesystem/HEAD/src/mul128.h -------------------------------------------------------------------------------- /src/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpineSystem/vulpinesystem/HEAD/src/screen.c -------------------------------------------------------------------------------- /src/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpineSystem/vulpinesystem/HEAD/src/screen.h -------------------------------------------------------------------------------- /src/semu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpineSystem/vulpinesystem/HEAD/src/semu.c -------------------------------------------------------------------------------- /src/semu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VulpineSystem/vulpinesystem/HEAD/src/semu.h --------------------------------------------------------------------------------