blob: 601c4c5ba8c3430d75abac220472e96ada889d4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ %CPU=i386 }
{ Old file: tbs0226.pp }
{ Asm, offset of var is not allowed as constant OK 0.99.11 (PFV) }
{$ifdef fpc}{$asmmode intel}{$endif}
var
test : longint;
begin
exit; { don't run this code below !! }
asm
dd test
end;
end.
|