Emul8.Peripherals.CPU.TranslationCPU.ReadByteFromBus C# (CSharp) Method

ReadByteFromBus() private method

private ReadByteFromBus ( uint offset ) : uint
offset uint
return uint
        protected uint ReadByteFromBus(uint offset)
        {
            if(UpdateContextOnLoadAndStore)
            {
                UpdateContext();
            }
            using(ObtainPauseGuard(true, offset))
            {
                return machine.SystemBus.ReadByte(offset);
            }
        }
TranslationCPU