Browse Source

* don't use asm directly for main

pierre 22 years ago
parent
commit
692cf241a8
1 changed files with 3 additions and 1 deletions
  1. 3 1
      tests/webtbs/tw2323.pp

+ 3 - 1
tests/webtbs/tw2323.pp

@@ -8,9 +8,11 @@
 
 var
   buf : array[0..255] of char;
-asm
+begin
+  asm
     lea ebx,buf
     add ebx,'('
     mov al, [ebx - '(']
+  end;
 end.