├── LICENSE ├── Makefile ├── README.md ├── boot.asm ├── check_n_pack.sh ├── grub.cfg ├── io.asm ├── isodir └── boot │ ├── grub │ └── grub.cfg │ └── microOS.bin ├── kbd.c ├── kbd.h ├── kernel.c ├── linker.ld ├── microOS.bin ├── res └── screenplay.gif ├── vga.c └── vga.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaswata56/microOS/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaswata56/microOS/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaswata56/microOS/HEAD/README.md -------------------------------------------------------------------------------- /boot.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaswata56/microOS/HEAD/boot.asm -------------------------------------------------------------------------------- /check_n_pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaswata56/microOS/HEAD/check_n_pack.sh -------------------------------------------------------------------------------- /grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaswata56/microOS/HEAD/grub.cfg -------------------------------------------------------------------------------- /io.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaswata56/microOS/HEAD/io.asm -------------------------------------------------------------------------------- /isodir/boot/grub/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaswata56/microOS/HEAD/isodir/boot/grub/grub.cfg -------------------------------------------------------------------------------- /isodir/boot/microOS.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaswata56/microOS/HEAD/isodir/boot/microOS.bin -------------------------------------------------------------------------------- /kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaswata56/microOS/HEAD/kbd.c -------------------------------------------------------------------------------- /kbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaswata56/microOS/HEAD/kbd.h -------------------------------------------------------------------------------- /kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaswata56/microOS/HEAD/kernel.c -------------------------------------------------------------------------------- /linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaswata56/microOS/HEAD/linker.ld -------------------------------------------------------------------------------- /microOS.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaswata56/microOS/HEAD/microOS.bin -------------------------------------------------------------------------------- /res/screenplay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaswata56/microOS/HEAD/res/screenplay.gif -------------------------------------------------------------------------------- /vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaswata56/microOS/HEAD/vga.c -------------------------------------------------------------------------------- /vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaswata56/microOS/HEAD/vga.h --------------------------------------------------------------------------------