fpc/tests/webtbs/tw2323.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

18 lines
288 B
ObjectPascal

{ %CPU=i386 }
{ 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.