Sfoglia il codice sorgente

* don't use asm directly for main

pierre 22 anni fa
parent
commit
692cf241a8
1 ha cambiato i file con 3 aggiunte e 1 eliminazioni
  1. 3 1
      tests/webtbs/tw2323.pp

+ 3 - 1
tests/webtbs/tw2323.pp

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