Implement ramdisk i/o, advance kernel printf

This commit is contained in:
Nero 2019-04-28 22:01:30 +00:00
parent acef5262eb
commit bc6a49c54d
5 changed files with 231 additions and 65 deletions

View file

@ -20,7 +20,7 @@ endif
default: kernel.rom
kernel.rom: kernel/*.asm
nasm -s -o $@ -I kernel kernel/main.asm && scripts/fix-rom.sh $@
nasm -s -o $@ -I lib -I kernel kernel/main.asm && scripts/fix-rom.sh $@
boot/%.bin: boot/%.asm
nasm -s -o $@ -I lib $<