EttinOS/make.sh

15 lines
238 B
Bash
Raw Normal View History

2021-05-26 14:05:49 +00:00
#!/bin/bash
if [ ! -d "build" ];
then
mkdir build
fi
2021-05-26 14:05:49 +00:00
cd src/
nasm boot.asm -f bin -O0 -o ../build/boot.bin
nasm system.asm -f bin -O0 -o ../build/system.bin
2021-05-26 14:05:49 +00:00
cd ../build/
cat boot.bin system.bin > EttinOS.img
rm boot.bin system.bin