IFUPLA.mesa
Copyright © 1984 by Xerox Corporation. All rights reserved.
Last edited by McCreight, May 20, 1986 4:06:59 pm PDT
Curry, June 1, 1986 7:24:48 pm PDT
DIRECTORY
PLAOps;
IFUPLA: CEDAR DEFINITIONS =
BEGIN
PLAs: TYPE = { fetchControl, fetchRdDecode, fetchWtDecode, fetchPreDecode, instrDecode0, instrDecode1, instrDecode2, instrDecode3, instrDecode4, instrDecode5, instrDecode6, interlock, mainPipeControl, stackAControl, stackBControl, stackDecode, passRtAB, passRtBA, passLtB };
Sense: TYPE = {input, output};
plas: ARRAY PLAs OF PLAOps.PLA;
plaSizes: ARRAY PLAs OF ARRAY Sense OF NAT;
IFUPLAEval: PROC [ plaType: PLAs ];
END.