EttinOS/make.sh

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