Home
last modified time | relevance | path

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

/Renode-v1.15.3-c57714d/platforms/cpus/
Dambiq-apollo4.repl25 WriteWord 0x6C 0x2900 // asm: cmp r1, #0 // compare arg1
26 WriteWord 0x6E 0xD000 // asm: beq 0x72 // jump to 0x72 if equal
27 WriteWord 0x70 0xE0D6 // asm: b 0x220 // jump to 0x220
28 WriteWord 0x72 0xE0C5 // asm: b 0x200 // jump to 0x200
31 WriteWord 0x74 0x6800 // asm: ldr r0, [r0, #0]
32 WriteWord 0x76 0x4770 // asm: bx lr
39 WriteWord 0x9C 0x300F // asm: adds r0, #15 // add 15 iterations
40 WriteWord 0x9E 0x3801 // asm: subs r0, #1 // decrement number of iterations
41 WriteWord 0xA0 0x2800 // asm: cmp r0, #0 // compare with 0
42 WriteWord 0xA2 0xd1fc // asm: bne.n 0x9E // jump to 0x9E if not equal
[all …]
/Renode-v1.15.3-c57714d/tests/unit-tests/
Driscv-zbb-extension.robot16 Execute Command sysbus WriteWord 0x0 0x4505
19 Execute Command sysbus WriteWord 0x2 0x0505
29 Execute Command sysbus WriteWord 0x0 0x4505
32 Execute Command sysbus WriteWord 0x2 0x0505
42 Execute Command sysbus WriteWord 0x0 0x4505
45 Execute Command sysbus WriteWord 0x2 0x0505
Dsync_pc.robot88 Execute Command sysbus WriteWord 0x1000 0xF03D
89 Execute Command sysbus WriteWord 0x1002 0xF03D
90 Execute Command sysbus WriteWord 0x1004 0xF03D
91 Execute Command sysbus WriteWord 0x1006 0xF03D
92 Execute Command sysbus WriteWord 0x1008 0xF03D
93 Execute Command sysbus WriteWord 0x100a 0xF03D
Dexternal-mmu.robot91 Execute Command sysbus WriteWord 0x2000 0x1234
101 Execute Command sysbus WriteWord 0x1000 0x0124
158 Execute Command sysbus WriteWord 0x10000 0xFFFF
159 Execute Command sysbus WriteWord 0x11000 0x0124
193 Execute Command sysbus WriteWord 0x10000 0xFFFF
194 Execute Command sysbus WriteWord 0x11000 0x0124
245 Execute Command sysbus WriteWord 0x1000 0x0124
259 Execute Command sysbus WriteWord 0x2000 0x0124
Dopcodes-counting.robot16 Execute Command sysbus WriteWord 0x0 0xb38e
Dmemory-invalidation.robot78 Execute Command sysbus WriteWord 0xffffff 0x9313
Dpage-access-via-io.robot38 Execute Command sysbus WriteWord ${dest} ${opcode}
Driscv-custom-instructions.robot43 Execute Command sysbus WriteWord 0x0 0xb38e
Dexecution-tracing.robot59 Execute Command sysbus WriteWord ${pc+4} 0x0001 cpu # nop
80 Execute Command sysbus WriteWord ${pc+4} 0x0001 # nop
90 …Execute Command sysbus WriteWord ${pc+4} 0xe537 cpu # lui a0,…
/Renode-v1.15.3-c57714d/tests/platforms/
DMSP430X.robot35 Execute Command sysbus WriteWord 0x2100 0x02e4 # asm: ADDA R2, R4
36 Execute Command sysbus WriteWord 0x2102 0x03e4 # asm: ADDA R3, R4
37 Execute Command sysbus WriteWord 0x2104 0x02f4 # asm: SUBA R2, R4
38 Execute Command sysbus WriteWord 0x2106 0x03f4 # asm: SUBA R3, R4
/Renode-v1.15.3-c57714d/src/Plugins/SystemCPlugin/Peripheral/
DSystemCCPU.cs81 public void WriteWord(long offset, ushort value) in WriteWord() method in Antmicro.Renode.Peripherals.SystemC.SystemCCPU
83 systemCPeripheral.WriteWord(offset, value); in WriteWord()
DSystemCPeripheral.cs303 public void WriteWord(long offset, ushort value) in WriteWord() method in Antmicro.Renode.Peripherals.SystemC.SystemCPeripheral
579 … sysbus.WriteWord(message.Address, (ushort)message.Payload, context: icpu); in BackwardConnectionLoop()
/Renode-v1.15.3-c57714d/src/Renode/Integrations/
DArduinoLoader.cs185 case (char)Command.WriteWord: in Decode()
262 case Command.WriteWord: in HandleCommand()
263 machine.SystemBus.WriteWord(arg0, (ushort)arg1); in HandleCommand()
355 WriteWord = (byte)'H', enumerator
/Renode-v1.15.3-c57714d/scripts/single-node/
Dnxp-imxrt595.resc13 sysbus WriteWord 0x1300805c 0x4770 # "bx lr"
Drzg2l_linux.resc43 sysbus WriteWord 0x2000005A 0x0 cpu0
/Renode-v1.15.3-c57714d/src/Plugins/CoSimulationPlugin/CoSimulated/Peripherals/
DCoSimulatedPeripheral.cs150 public void WriteWord(long offset, ushort value) in WriteWord() method in Antmicro.Renode.Peripherals.CoSimulated.CoSimulatedPeripheral
/Renode-v1.15.3-c57714d/src/Plugins/CoSimulationPlugin/Connection/
DCoSimulationConnection.cs411 systemBus.WriteWord(message.Address, (ushort)message.Data); in HandleReceivedMessage()