fpc/tests/webtbs/tw2323.pp

20 lines
326 B
ObjectPascal

{ %skiptarget=android }
{ %CPU=i386 }
{ %OPT=-Cg- }
{ Source provided for Free Pascal Bug Report 2323 }
{ Submitted by "marco" on 2003-01-16 }
{ e-mail: marco@freepascal.org }
{$Mode Delphi}
{$ASMMODE Intel}
var
buf : array[0..255] of char;
begin
asm
lea ebx,buf
add ebx,'('
mov al, [ebx - '(']
end;
end.