* don't use asm directly for main

This commit is contained in:
pierre 2003-03-26 15:15:45 +00:00
parent 8473dada93
commit 692cf241a8

View File

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