Files
Digital-Research-Source-Code/MPM OPERATING SYSTEMS/MPM II/MPM II SOURCE/UTIL8/QUEUE.LIT
Sepp J Morris 31738079c4 Upload
Digital Research
2020-11-06 18:50:37 +01:00

47 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
/*
Queue Literals
*/
declare queueheader literally
'ql address,
name(8) byte,
msglen address,
nmbmsgs address,
dqph address,
nqph address';
declare queuehead literally
'structure (queueheader)';
declare cqueue literally
'queueheader,
msgin address,
msgout address,
msgcnt address ';
declare circularqueue literally
'structure (cqueue,
buf (1) byte )';
declare lqueue literally
'queueheader,
mh address,
mt address,
bh address';
declare linkedqueue literally
'structure (lqueue,
buf (1) byte )';
declare userqcbhead literally
'structure (pointer address,
msgadr address )';
declare userqcb literally
'structure (pointer address,
msgadr address,
name(8) byte)';
$list