EttinOS/make.sh

10 lines
176 B
Bash
Raw Normal View History

2021-05-26 14:05:49 +00:00
#!/bin/bash
2021-06-02 10:18:59 +00:00
cd source/
nasm boot.asm -f bin -O0 -o ../boot.bin
nasm system.asm -f bin -O0 -o ../system.bin
2021-06-02 10:18:59 +00:00
cd ..
cat boot.bin system.bin > EttinOS.img
rm boot.bin system.bin