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

51 lines
1.1 KiB
Plaintext
Raw 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
/*
modified 7/24/81 R. Silberstein
*/
dcl freept addr external;
DCL END$OF$SYMBTAB ADDR EXTERNAL;
symbterminate: proc external;
end symbterminate;
symbinit: proc external;
end symbinit;
newsymbol: proc(lg,stradr,result) byte external;
dcl lg byte,(stradr,result) addr;
end newsymbol;
newmacro: proc(lg,stradr,macdefpt) byte external;
dcl lg byte,(stradr,macdefpt) addr;
end newmacro;
findsymbol: proc(lg,stradr,result) byte external;
dcl lg byte,(stradr,result) addr;
end findsymbol;
getattributes: proc(symbadr,dest) external;
dcl (symbadr,dest) addr;
end getattributes;
enterattributes: proc(symbadr,source) external;
dcl (symbadr,source) addr;
end enterattributes;
findcodemacro: proc(lg,stradr,result) byte external;
dcl lg byte,(stradr,result) addr;
end findcodemacro;
new$cm$body: PROC(lg,ptr) byte external;
dcl lg byte,ptr addr;
end$proc new$cm$body;
new$cm$name: PROC(lg,asciiptr,returnptr) byte external;
dcl lg byte,(asciiptr,returnptr) addr;
end$proc new$cm$name;
$list