mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-06 02:08:01 +02: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. |