Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/RiscV/
DBaseRiscV.cs53 customInstructionsMapping = new Dictionary<ulong, Action<UInt64>>(); in BaseRiscV()
280 customInstructionsMapping[id] = handler; in InstallCustomInstruction()
783 if(!customInstructionsMapping.TryGetValue(id, out var handler)) in HandleCustomInstruction()
863 private readonly Dictionary<ulong, Action<UInt64>> customInstructionsMapping; field in Antmicro.Renode.Peripherals.CPU.BaseRiscV