aboutsummaryrefslogtreecommitdiff
path: root/modules/parsers/gas/tests/localcomm.asm
diff options
context:
space:
mode:
Diffstat (limited to 'modules/parsers/gas/tests/localcomm.asm')
-rw-r--r--modules/parsers/gas/tests/localcomm.asm18
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/parsers/gas/tests/localcomm.asm b/modules/parsers/gas/tests/localcomm.asm
new file mode 100644
index 0000000..17f33e6
--- /dev/null
+++ b/modules/parsers/gas/tests/localcomm.asm
@@ -0,0 +1,18 @@
+ .text
+ .local failmsg
+ .comm failmsg,100,32
+ .local failed
+ .comm failed,1000,32
+ .local from_dec_data
+ .comm from_dec_data,8,8
+ .local op2static
+ .comm op2static,8,8
+ .local op1static
+ .comm op1static,8,8
+ .local spare
+ .comm spare,8,8
+ .local result
+ .comm result,8,8
+ .local conv_bv
+ .comm conv_bv,8,8
+