mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-25 23:29:42 +02:00
15 lines
128 B
ObjectPascal
15 lines
128 B
ObjectPascal
program test_int;
|
|
|
|
{$ifdef go32v2}
|
|
uses
|
|
dpmiexcp;
|
|
{$endif go32v2}
|
|
|
|
procedure int;interrupt;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
int;
|
|
end.
|