mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-08 05:01:01 +01:00
16 lines
167 B
ObjectPascal
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. |