summaryrefslogtreecommitdiffstats
path: root/Tests/VSNASM/bar.asm
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/VSNASM/bar.asm')
-rw-r--r--Tests/VSNASM/bar.asm13
1 files changed, 13 insertions, 0 deletions
diff --git a/Tests/VSNASM/bar.asm b/Tests/VSNASM/bar.asm
new file mode 100644
index 0000000..b486d82
--- /dev/null
+++ b/Tests/VSNASM/bar.asm
@@ -0,0 +1,13 @@
+section .text
+%ifdef TEST2x64
+global bar
+%else
+global _bar
+%endif
+%ifdef TESTx64
+bar:
+%else
+_bar:
+%endif
+ mov EAX_COMMA_SPACE_ZERO
+ ret