#
# Makefile
#

test.dat:	test.ihx
	srec_cat test.ihx -i -o test.dat -vm 8

test.ihx:	test.rel
	aslink -i -u test.rel

test.rel:	test.asm
	as6800 -l -o test.asm


# End of Makefile
