コード例 #1
0
        public void InspectMemory()
        {
            m_Bank.Store <byte>(5, new MemoryAddress(0));

            var t_Value =
                m_Machine.InspectMemory(new MemoryLocationAddress(new MemoryAddress(0), new MemoryBankAddress(0)));

            t_Value.Should().Be(5);
        }