mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
16 lines
197 B
ObjectPascal
16 lines
197 B
ObjectPascal
{ %INTERACTIVE }
|
|
{ checking of invalid drive size }
|
|
|
|
USES DOS;
|
|
var
|
|
d : longint;
|
|
BEGIN
|
|
{$I-}
|
|
d:=DISKSIZE(1);
|
|
writeln(d);
|
|
WRITELN(IORESULT);
|
|
{$I+}
|
|
if d<>-1 then
|
|
halt(1);
|
|
END.
|