Basic build and runs scripts, began setup of ftable n stuff

going the route of watching this series so far.
This commit is contained in:
2022-02-05 11:19:40 -05:00
parent 01081ce167
commit 8d1ec63cc1
12 changed files with 265 additions and 119 deletions

18
Makefile Normal file
View File

@ -0,0 +1,18 @@
16bit.loader: 16bit.boot 16bit.ftable 16bit.scratch
cat 16bit.boot 16bit.ftable 16bit.scratch > 16bit.loader
make clean
16bit.boot:
nasm 16bit.boot.s
16bit.ftable:
nasm 16bit.ftable.s
16bit.scratch:
nasm 16bit.scratch.s
clean:
rm 16bit.boot
rm 16bit.ftable
rm 16bit.scratch