Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DSimpleInstructionDecoder.cs59 public bool TryParseOpcode(byte value, out TInstruction result, byte bitNumber = 7) in TryParseOpcode() method in Antmicro.Renode.Utilities.SimpleInstructionDecoder
80 return children[nextBit ? 1 : 0].TryParseOpcode(value, out result, bitNumber); in TryParseOpcode()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/DMA/PL330_DMA/
DPL330_DMA.cs127 if(!decoderRoot.TryParseOpcode((byte)bytes, out var instruction)) in TryDecodeInstructionAtAddress()
391 if(!decoderRoot.TryParseOpcode((byte)debugInstructionBytes, out var debugInstruction)) in ExecuteDebugStart()
437 if(!decoderRoot.TryParseOpcode(insn, out var instruction)) in ExecuteLoop()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Wireless/
DCC2520.cs104 if(!decoderRoot.TryParseOpcode(data, out currentInstruction)) in Transmit()