mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-03 19:00:35 +02:00
25 lines
335 B
ObjectPascal
25 lines
335 B
ObjectPascal
{ %cpu=i386 }
|
|
|
|
{ Source provided for Free Pascal Bug Report 3131 }
|
|
{ Submitted by "Arnstein Prytz" on 2004-06-02 }
|
|
{ e-mail: Arnstein.Prytz@jcu.edu.au }
|
|
program tmp;
|
|
|
|
{$goto on}
|
|
{$asmmode intel}
|
|
|
|
procedure l;
|
|
label l1;
|
|
begin
|
|
l1 : WRITELN( 'Label L1' );
|
|
end;
|
|
|
|
procedure a; assembler;
|
|
asm
|
|
@_quit : ;
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|