summaryrefslogtreecommitdiff
path: root/Tests/VSMASM/foo.asm
blob: 97bdd1ad71ba4bf168dfbb6b8de3d01f6a94ad21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
ifndef DEF_FOO
.err <DEF_FOO incorrectly not defined>
endif
ifndef DEF_BAR
.err <DEF_BAR incorrectly not defined>
endif
ifndef TESTx64
.386
.model flat, c
endif
.code
include <foo-proc.asm>
end