Exemplo n.º 1
0
        public void Roundtrip_positional_value_1()
        {
            var memory = new MemoryBank();

            memory.SetValueImmediate(0, 1);
            memory.SetValueByLocation(0, 99);
            Assert.AreEqual(99, memory.GetValueByLocation(0));
        }