all: demo3k.p demo3k.n birthday.p birthday.n pacman.p pacman.n inlahti.n inlahti.p

demo3k.p: demo3k.s
	dasm demo3k.s -odemo3k.p -v3 -ldemo3kp.lst -MSYSTEM=PAL

demo3k.n: demo3k.s
	dasm demo3k.s -odemo3k.n -v3 -ldemo3kn.lst -MSYSTEM=NTSC

birthday.p: birthday.s
	dasm birthday.s -obirthday.p -v3 -lbirthdayp.lst -MSYSTEM=PAL

birthday.n: birthday.s
	dasm birthday.s -obirthday.n -v3 -lbirthdayn.lst -MSYSTEM=NTSC

pacman.p: pacman.s
	dasm pacman.s -opacman.p -v3 -lpacmanp.lst -MSYSTEM=PAL

pacman.n: pacman.s
	dasm pacman.s -opacman.n -v3 -lpacmann.lst -MSYSTEM=NTSC

inlahti.p: pu239inlahti.s
	dasm pu239inlahti.s -oinlahti.p -v3 -linlahtip.lst -MSYSTEM=PAL

inlahti.n: pu239inlahti.s
	dasm pu239inlahti.s -oinlahti.n -v3 -linlahtin.lst -MSYSTEM=NTSC


