Move kernel libs into subdir, create NBP-specific entrypoint

This commit is contained in:
Nero 2019-03-23 20:17:47 +00:00
parent c2e68a217e
commit 260db9f8d7
7 changed files with 45 additions and 19 deletions

View file

@ -1,5 +1,7 @@
kernel.com: *.asm
nasm -s -o kernel.com main.asm
default: nbp.com
%.com: %.asm
nasm -s -o $@ $<
clean:
rm -f kernel.com
rm -f *.com