fpc/tests/webtbs/tw0932.pp
2000-11-30 22:38:14 +00:00

16 lines
167 B
ObjectPascal

program test;
{$ASMMODE Intel }
procedure TestProc;
const
TestConst: String = 'Test';
begin
asm
mov edi, offset TestConst
end;
end;
begin
TestProc;
end.