aboutsummaryrefslogtreecommitdiff
path: root/libyasm/tests/duplabel-err.asm
diff options
context:
space:
mode:
Diffstat (limited to 'libyasm/tests/duplabel-err.asm')
-rw-r--r--libyasm/tests/duplabel-err.asm18
1 files changed, 18 insertions, 0 deletions
diff --git a/libyasm/tests/duplabel-err.asm b/libyasm/tests/duplabel-err.asm
new file mode 100644
index 0000000..3d666b3
--- /dev/null
+++ b/libyasm/tests/duplabel-err.asm
@@ -0,0 +1,18 @@
+%macro TESTMAC 0
+label:
+ mov ax, 5
+ mov dx, 4
+ mov cx, 3
+%endmacro
+
+db 6
+
+db 7
+
+TESTMAC
+
+db 8
+db 9
+TESTMAC
+db 10
+TESTMAC