<> <> <> <> <> <> <<>> DIRECTORY DragOpsCross, IFUPLAInstrDecode, PLAOps; IFUPLAInstrDecodeImpl3: CEDAR PROGRAM IMPORTS IFUPLAInstrDecode EXPORTS IFUPLAInstrDecode = BEGIN OPEN IFUPLAInstrDecode, PLAOps; <> GenInstrDecodePLA3: PUBLIC GenInstrDecodePLAProc = { current _ old; Set[s:current, m:[op: InstrTopSig[8]], d:[op: dADDB], out:[ aReg: abStackTop, x2ALitSource: alpha, cReg: cStackTop, aluOp: SAdd, condSel: OvFl ]]; Set[s:current, m:[op: InstrTopSig[8]], d:[op: dSUBB], out:[ aReg: abStackTop, x2ALitSource: alpha, cReg: cStackTop, aluOp: SSub, condSel: OvFl ]]; Set[s:current, m:[op: InstrTopSig[8]], d:[op: dADDDB], out:[ aReg: abStackTop, x2ALitSource: alphaBeta, cReg: cStackTop, aluOp: SAdd, condSel: OvFl ]]; Set[s:current, m:[op: InstrTopSig[8]], d:[op: dSUBDB], out:[ aReg: abStackTop, x2ALitSource: alphaBeta, cReg: cStackTop, aluOp: SSub, condSel: OvFl ]]; Set[s:current, m:[op: InstrTopSig[8]], d:[op: dADDQB], out:[ aReg: abStackTop, x2ALitSource: alpBetGamDel, cReg: cStackTop, aluOp: SAdd, condSel: OvFl ]]; Set[s:current, m:[op: InstrTopSig[8]], d:[op: dSUBQB], out:[ aReg: abStackTop, x2ALitSource: alpBetGamDel, cReg: cStackTop, aluOp: SSub, condSel: OvFl ]]; Set[s:current, m:[op: InstrTopSig[8]], d:[op: dSHDL], out:[ aReg: [ s, offset, minus1 ], bReg: [ s, offset, zero ], popSb: TRUE, x2ALitSource: alphaBeta, cReg: [s, offset, minus1], aluOp: FOP ]]; Set[s:current, m:[op: InstrTopSig[8]], d:[op: dSHDR], out:[ aReg: [ s, offset, zero ], bReg: [ s, offset, minus1 ], popSb: TRUE, x2ALitSource: alphaBeta, cReg: [s, offset, minus1], aluOp: FOP ]]; Set[s:current, m:[op: InstrTopSig[8]], d:[op: dSHL], out:[ aReg: [ s, offset, zero ], bReg: [ cBase, offset, zero ], x2ALitSource: alphaBeta, cReg: cStackTop, aluOp: FOP ]]; Set[s:current, m:[op: InstrTopSig[8]], d:[op: dSHR], out:[ aReg: [ s, offset, zero ], bReg: [ s, offset, zero ], x2ALitSource: alphaBeta, cReg: [ s, offset, zero ], aluOp: FOP ]]; <> <<>> <> <> <> <> <> <> <> <> <> <> <> <<>> <> <> <> <> <> <> <> <> <> <> <> <> <> <<>> <> <> <> <> <> <> <> <> <> <> <> <<>> <> <> <> <> <> <> <> <> <> <> <> <> <> <> <> <> <> <> <> <<>> <> <> <> <> <> <> <> <> <> <> <> <> <> <<>> <> <> <> <> <> <> <> <> <> <> <> <> <> <> <> <> <> <> <> <> }; END.