Explorar el Código

+ test for qualified vars in assembler reader

Jonas Maebe hace 24 años
padre
commit
388bd7c43d
Se han modificado 1 ficheros con 11 adiciones y 0 borrados
  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.