home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fish 'n' More 2
/
fishmore-publicdomainlibraryvol.ii1991xetec.iso
/
fish
/
fun&games
/
thinking
/
cross
/
txt
/
cpcerror.mod
< prev
next >
Wrap
Text File
|
1991-03-09
|
240b
|
15 lines
IMPLEMENTATION MODULE CPCError;
FROM Arts IMPORT Error;
FROM SYSTEM IMPORT ADDRESS;
PROCEDURE myAssert(flag: BOOLEAN; txt1Ptr,txt2Ptr: ADDRESS);
BEGIN
IF (NOT flag) THEN
Error(txt1Ptr,txt2Ptr);
END;
END myAssert;
END CPCError.