#!/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