summaryrefslogtreecommitdiff
path: root/modules/preprocs/yapp/tests/pdefine.asm
blob: ebde9222d4a7d128e9f4b9a777e79e98551219fa (plain)
1
2
3
4
5
6
%define foo(bar) bar+1
%define foo(bar, baz) bar-baz
	mov	ax, foo
	mov	ax, foo(5)
	mov	ax, foo(5, 3)
	mov	ax, foo(5, 6, 7)