Home
last modified time | relevance | path

Searched refs:byteRegisterCollection (Results 1 – 2 of 2) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DS32K3XX_SystemIntegrationUnitLite2.cs38 byteRegisterCollection = new ByteRegisterCollection(this); in S32K3XX_SystemIntegrationUnitLite2()
72 return byteRegisterCollection.Read(offset); in ReadByte()
77 byteRegisterCollection.Write(offset, value); in WriteByte()
84 byteRegisterCollection.Reset(); in Reset()
165 … IProvidesRegisterCollection<ByteRegisterCollection>.RegistersCollection => byteRegisterCollection;
501 private readonly ByteRegisterCollection byteRegisterCollection; field in Antmicro.Renode.Peripherals.Miscellaneous.S32K3XX_SystemIntegrationUnitLite2
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DMisc.cs1643 ByteRegisterCollection byteRegisterCollection = @this as ByteRegisterCollection;
1645 outputValue = (uint)byteRegisterCollection.Read(register);
1682 ByteRegisterCollection byteRegisterCollection = @this as ByteRegisterCollection;
1684 previousValue = (uint)byteRegisterCollection.Read(register);
1685 writeFunction = (data) => byteRegisterCollection.Write(register, (byte)data);