├── .gitignore ├── GNUmakefile ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── kernel ├── .gitignore ├── GNUmakefile ├── asm_amd64.s ├── asm_arm64.s └── main.go └── limine.cfg /.gitignore: -------------------------------------------------------------------------------- 1 | /limine 2 | /ovmf 3 | *.iso 4 | *.hdd 5 | -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyGamerJet/limine-barebones-golang/HEAD/GNUmakefile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyGamerJet/limine-barebones-golang/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyGamerJet/limine-barebones-golang/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyGamerJet/limine-barebones-golang/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyGamerJet/limine-barebones-golang/HEAD/go.sum -------------------------------------------------------------------------------- /kernel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyGamerJet/limine-barebones-golang/HEAD/kernel/.gitignore -------------------------------------------------------------------------------- /kernel/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyGamerJet/limine-barebones-golang/HEAD/kernel/GNUmakefile -------------------------------------------------------------------------------- /kernel/asm_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyGamerJet/limine-barebones-golang/HEAD/kernel/asm_amd64.s -------------------------------------------------------------------------------- /kernel/asm_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyGamerJet/limine-barebones-golang/HEAD/kernel/asm_arm64.s -------------------------------------------------------------------------------- /kernel/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyGamerJet/limine-barebones-golang/HEAD/kernel/main.go -------------------------------------------------------------------------------- /limine.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TotallyGamerJet/limine-barebones-golang/HEAD/limine.cfg --------------------------------------------------------------------------------