pierre 25 年之前
父節點
當前提交
695f24d2bd
共有 1 個文件被更改,包括 16 次插入0 次删除
  1. 16 0
      tests/webtbs/tbug932.pp

+ 16 - 0
tests/webtbs/tbug932.pp

@@ -0,0 +1,16 @@
+program test;
+
+{$ASMMODE Intel }
+
+procedure TestProc;
+const
+  TestConst: String = 'Test';
+begin
+  asm
+    mov edi, offset TestConst
+  end;
+end;
+
+begin
+  TestProc;
+end.