├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── Makefile ├── bootelf.asm ├── elf_load.asm ├── framebuffer.asm ├── memmap.asm ├── paging.asm ├── readme.md └── tests ├── a └── a.asm ├── c └── c.c └── dump └── dump.c /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N00byEdge/bootelf/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N00byEdge/bootelf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N00byEdge/bootelf/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N00byEdge/bootelf/HEAD/Makefile -------------------------------------------------------------------------------- /bootelf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N00byEdge/bootelf/HEAD/bootelf.asm -------------------------------------------------------------------------------- /elf_load.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N00byEdge/bootelf/HEAD/elf_load.asm -------------------------------------------------------------------------------- /framebuffer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N00byEdge/bootelf/HEAD/framebuffer.asm -------------------------------------------------------------------------------- /memmap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N00byEdge/bootelf/HEAD/memmap.asm -------------------------------------------------------------------------------- /paging.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N00byEdge/bootelf/HEAD/paging.asm -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N00byEdge/bootelf/HEAD/readme.md -------------------------------------------------------------------------------- /tests/a/a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N00byEdge/bootelf/HEAD/tests/a/a.asm -------------------------------------------------------------------------------- /tests/c/c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N00byEdge/bootelf/HEAD/tests/c/c.c -------------------------------------------------------------------------------- /tests/dump/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N00byEdge/bootelf/HEAD/tests/dump/dump.c --------------------------------------------------------------------------------