Parcourir la source

* don't use asm directly for main

pierre il y a 22 ans
Parent
commit
692cf241a8
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  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.