#!/bin/sh

if [ ! -f boot_idiot.img ] ; then
	echo "Hey! You're missing boot_idiot.img. Attempting to create it...."
	helper-scripts/genbootimg
fi

if [ -f boot_idiot.img ] ; then
	qemu-system-x86_64 boot_idiot.img
fi
