├── .gitignore ├── Makefile ├── kernel.go ├── link.ld ├── multiboot.s └── screen.go /.gitignore: -------------------------------------------------------------------------------- 1 | kernel 2 | *.o 3 | *.gox 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlegio/GOS/HEAD/Makefile -------------------------------------------------------------------------------- /kernel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlegio/GOS/HEAD/kernel.go -------------------------------------------------------------------------------- /link.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlegio/GOS/HEAD/link.ld -------------------------------------------------------------------------------- /multiboot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlegio/GOS/HEAD/multiboot.s -------------------------------------------------------------------------------- /screen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vlegio/GOS/HEAD/screen.go --------------------------------------------------------------------------------