EttinOS/make.sh
2021-05-26 17:05:49 +03:00

10 lines
168 B
Bash
Executable file

#!/bin/bash
cd src/
nasm boot.asm -f bin -o ../build/boot.bin
nasm os.asm -f bin -o ../build/os.bin
cd ../build/
cat boot.bin os.bin > EttinOS.img
rm boot.bin os.bin