Пример #1
0
        public void ReadWriteWord()
        {
            var mmu = new MMU();

            ushort testword = 0xf1b2;

            mmu.WriteWord(0xff80, testword);

            Assert.That(mmu.rw(0xff80), Is.EqualTo(testword));
        }