all:
	nasm -f bin blink.asm -o blink.bin
	nasm -f bin intro.asm -o intro.bin
	nasm -f bin intro2.asm -o intro2.bin
clean:
	rm -f *.bin
