IFUPLAFetchRdDecode.mesa
Copyright © 1984 by Xerox Corporation. All rights reserved.
Last edited by Curry, November 13, 1985 5:36:45 pm PST
DIRECTORY
PLAOps;
IFUPLAFetchRdDecode: CEDAR DEFINITIONS =
BEGIN
FetchRdDecodePLA: PLAOps.PLA;
FetchRdDecodeProc:  PROC[argRec: FetchRdDecodeIn]
RETURNS[resRec: FetchRdDecodeOut];
-- default must be zero for use initializing sigificance arg
FetchDecodeIn: TYPE =
RECORD[writing: BOOL ← FALSE, wtIndex: [0..4) ← 0, rdIndex: [0..16) ← 0];
FetchRdDecodeIn: TYPE = FetchDecodeIn;
FetchRdDecodeOut: TYPE = RECORD[rdEnable: [0..65535] ← 0];
END.