Browse Source

+ test for qualified vars in assembler reader

Jonas Maebe 24 years ago
parent
commit
388bd7c43d
1 changed files with 11 additions and 0 deletions
  1. 11 0
      tests/test/tasmread.pp

+ 11 - 0
tests/test/tasmread.pp

@@ -0,0 +1,11 @@
+program test;
+
+{$asmmode intel}
+
+var l: longint;
+
+begin
+  asm
+     mov test.l, 5
+  end;
+end.