Exemplo n.º 1
0
        public void StepIncrementsMpmAddressRegisterValue()
        {
            var mpmAddressRegisterValueBeforeStep = sequencer.MpmAddressRegister.Data.Value;

            JumpOperationsMethods.Step(sequencer);
            var mpmAddressRegisterValueAfterStep = sequencer.MpmAddressRegister.Data.Value;

            Assert.AreEqual(mpmAddressRegisterValueBeforeStep + 1, mpmAddressRegisterValueAfterStep);
        }
Exemplo n.º 2
0
 public void IntrThrowsNotImplementedException()
 {
     JumpOperationsMethods.Intr(sequencer);
 }
Exemplo n.º 3
0
 public void AdThrowsNotImplementedException()
 {
     JumpOperationsMethods.Ad(sequencer);
 }