Emul8.Peripherals.CPU.TranslationCPU.WriteByteToBus C# (CSharp) Метод

WriteByteToBus() приватный Метод

private WriteByteToBus ( uint offset, uint value ) : void
offset uint
value uint
Результат void
        protected void WriteByteToBus(uint offset, uint value)
        {
            if(UpdateContextOnLoadAndStore)
            {
                UpdateContext();
            }
            using(ObtainPauseGuard(false, offset))
            {
                machine.SystemBus.WriteByte(offset, unchecked((byte)value));
            }
        }
TranslationCPU