mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 02:27:56 +02:00
24 lines
334 B
ObjectPascal
24 lines
334 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.
|