public void StepIncrementsMpmAddressRegisterValue() { var mpmAddressRegisterValueBeforeStep = sequencer.MpmAddressRegister.Data.Value; JumpOperationsMethods.Step(sequencer); var mpmAddressRegisterValueAfterStep = sequencer.MpmAddressRegister.Data.Value; Assert.AreEqual(mpmAddressRegisterValueBeforeStep + 1, mpmAddressRegisterValueAfterStep); }
public void IntrThrowsNotImplementedException() { JumpOperationsMethods.Intr(sequencer); }
public void AdThrowsNotImplementedException() { JumpOperationsMethods.Ad(sequencer); }