mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
24 lines
343 B
ObjectPascal
24 lines
343 B
ObjectPascal
{ %CPU=i386 }
|
|
{ Old file: tbs0174.pp }
|
|
{ Asm, offsets of fields are not possible yet OK 0.99.9 (PFV) }
|
|
|
|
{$ASMMODE ATT}
|
|
|
|
type
|
|
tobj=object
|
|
l : longint;
|
|
end;
|
|
var
|
|
t : tobj;
|
|
|
|
procedure kl;assembler;
|
|
asm
|
|
{$ifdef CPUI386}
|
|
movl tobj.l,%eax // tobj.l should return the offset of l in tobj
|
|
{$endif CPUI386}
|
|
end;
|
|
|
|
|
|
begin
|
|
end.
|