├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── Makefile ├── README.md ├── grub.cfg ├── image ├── Dockerfile └── run.sh ├── layout.ld ├── run.sh ├── src ├── asm │ └── boot.asm ├── main.rs └── panic.rs └── x86_64-unknown-intermezzos-gnu.json /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "intermezzos" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intermezzOS/bare-bones/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intermezzOS/bare-bones/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intermezzOS/bare-bones/HEAD/README.md -------------------------------------------------------------------------------- /grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intermezzOS/bare-bones/HEAD/grub.cfg -------------------------------------------------------------------------------- /image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intermezzOS/bare-bones/HEAD/image/Dockerfile -------------------------------------------------------------------------------- /image/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intermezzOS/bare-bones/HEAD/image/run.sh -------------------------------------------------------------------------------- /layout.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intermezzOS/bare-bones/HEAD/layout.ld -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intermezzOS/bare-bones/HEAD/run.sh -------------------------------------------------------------------------------- /src/asm/boot.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intermezzOS/bare-bones/HEAD/src/asm/boot.asm -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intermezzOS/bare-bones/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/panic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intermezzOS/bare-bones/HEAD/src/panic.rs -------------------------------------------------------------------------------- /x86_64-unknown-intermezzos-gnu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intermezzOS/bare-bones/HEAD/x86_64-unknown-intermezzos-gnu.json --------------------------------------------------------------------------------