Ejemplo n.º 1
0
        public void WriteDoubleWordIRQ(long offset, uint value)
        {
            switch (offset)
            {
            case 0x18:
                INT_MGMTFLAG = value;
                break;
            }

            irqStatus[offset] = value;

            Rx.Unset();
            Tim.Unset();
            Tx.Unset();

            this.Log(LogLevel.Warning, "WriteDoubleWordIRQ({0:X}, {1:X})", offset, value);
        }