Files
Sepp J Morris 31738079c4 Upload
Digital Research
2020-11-06 18:50:37 +01:00

86 lines
1.5 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

$nolist
/*
Bdos Externals
*/
mon1:
procedure (func,info) external;
declare func byte;
declare info address;
end mon1;
mon2:
procedure (func,info) byte external;
declare func byte;
declare info address;
end mon2;
nfxdos:
procedure (func,info) external;
declare func byte;
declare info address;
end nfxdos;
open:
procedure (fcb$adr) byte external;
declare fcb$adr address;
end open;
close:
procedure (fcb$adr) external;
declare fcb$adr address;
end close;
readbf:
procedure (fcb$adr) byte external;
declare fcb$adr address;
end readbf;
init:
procedure external;
end init;
set$dma:
procedure (dma$adr) external;
declare dma$adr address;
end set$dma;
lo:
procedure (char) external;
declare char byte;
end lo;
co:
procedure (char) external;
declare char byte;
end co;
ci:
procedure byte external;
end ci;
rawci:
procedure byte external;
end rawci;
rawlst:
procedure (string$adr) external;
declare string$adr address;
end rawlst;
print$b:
procedure (bufferadr) external;
declare bufferadr address;
end print$b;
read$bu:
procedure (bufferadr) external;
declare bufferadr address;
end read$bu;
crlf:
procedure external;
end crlf;
$list