
install:
#if you only have nasm and not the gcc tools
#just issue these commands manually to build the image file
	
	#assemble boot1
	nasm -f bin krn/boot1.s
	
	#assemble boot2
	nasm -f bin krn/boot2.s

	#assemble tlib
	nasm -f bin tlib/tlib.s

	#assemble application
	nasm -f bin application.s

	#combine boot1+boot2+tlib+application into 1 flat binary
	nasm -f bin build.s -o ddusb.img


clean:
	rm krn/boot1 krn/boot2 tlib/tlib  *bak* application ddusb.img 
