summaryrefslogtreecommitdiff
path: root/modules/preprocs/yapp/tests/ifdef.asm
blob: b9d7807e4dfe67078367cda6f04131f043e3ab5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
%ifdef foo
	mov	ax, foo
%endif
%ifdef bar
	mov	ax, bar
%endif
%define foo 5
%ifdef foo
	mov	ax, foo
%endif
%ifdef bar
	mov	ax, bar
%endif