示例#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);
        }
示例#2
0
 public void IntrThrowsNotImplementedException()
 {
     JumpOperationsMethods.Intr(sequencer);
 }
示例#3
0
 public void AdThrowsNotImplementedException()
 {
     JumpOperationsMethods.Ad(sequencer);
 }