135,138d134
< /** Whether or not the effective address calculation is completed.
< * @todo: Consider if this is necessary or not.
< */
< EACalcDone,
248,253d243
< private:
< /** Instruction effective address.
< * @todo: Consider if this is necessary or not.
< */
< Addr instEffAddr;
<
862,870d851
< /** Sets the effective address. */
< void setEA(Addr ea) { instEffAddr = ea; instFlags[EACalcDone] = true; }
<
< /** Returns the effective address. */
< Addr getEA() const { return instEffAddr; }
<
< /** Returns whether or not the eff. addr. calculation has been completed. */
< bool doneEACalc() { return instFlags[EACalcDone]; }
<