示例#1
0
文件: MmuTests.cs 项目: szpght/moha
        public void StoreByteValueCanBeRetrieved()
        {
            _mmu.StoreByte(ExampleStoreAddress, 0xCA);
            _mmu.StoreByte(ExampleStoreAddress + 1, 0xFE);

            _mmu.GetByte(ExampleStoreAddress).Should().Be(0xCA);
            _mmu.GetByte(ExampleStoreAddress + 1).Should().Be(0xFE);
        }