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