Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DS32K3XX_MiscellaneousSystemControlModule.cs23 wordRegisterCollection = new WordRegisterCollection(this); in S32K3XX_MiscellaneousSystemControlModule()
29 return wordRegisterCollection.Read(offset); in ReadWord()
34 wordRegisterCollection.Write(offset, value); in WriteWord()
40 wordRegisterCollection.Reset(); in Reset()
45 … IProvidesRegisterCollection<WordRegisterCollection>.RegistersCollection => wordRegisterCollection;
213 private WordRegisterCollection wordRegisterCollection; field in Antmicro.Renode.Peripherals.Miscellaneous.S32K3XX_MiscellaneousSystemControlModule
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DMisc.cs1649 WordRegisterCollection wordRegisterCollection = @this as WordRegisterCollection;
1655 outputValue = (uint)wordRegisterCollection.Read(register + offset / 2);
1689 WordRegisterCollection wordRegisterCollection = @this as WordRegisterCollection;
1695 previousValue = (uint)wordRegisterCollection.Read(register + offset / 2);
1696 … writeFunction = (data) => wordRegisterCollection.Write(register + offset / 2, (ushort)data);