IFUPLAFetchWtDecode.mesa
Copyright © 1984 by Xerox Corporation. All rights reserved.
Last edited by Curry, November 13, 1985 5:36:10 pm PST
DIRECTORY
IFUPLAFetchRdDecode,
PLAOps;
IFUPLAFetchWtDecode: CEDAR DEFINITIONS =
BEGIN
FetchWtDecodePLA: PLAOps.PLA;
FetchWtDecodeProc:  PROC[argRec: FetchWtDecodeIn]
RETURNS[resRec: FetchWtDecodeOut];
-- default must be zero for use initializing sigificance arg
FetchWtDecodeIn: TYPE = IFUPLAFetchRdDecode.FetchDecodeIn;
FetchWtDecodeOut: TYPE = RECORD [wtEnable: [0..16) ← 0];
END.