EttinOS/make.sh
2021-06-02 13:33:39 +03:00

10 lines
176 B
Bash
Executable file

#!/bin/bash
cd source/
nasm boot.asm -f bin -O0 -o ../boot.bin
nasm system.asm -f bin -O0 -o ../system.bin
cd ..
cat boot.bin system.bin > EttinOS.img
rm boot.bin system.bin