MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / cpu_write_index

Function cpu_write_index

core/cpu.c:198–200  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

196 return cpu.registers.index[cpu.PREFIX].hl;
197}
198static void cpu_write_index(uint32_t value) {
199 cpu.registers.index[cpu.PREFIX].hl = value;
200}
201static void cpu_write_index_partial_mode(uint32_t value) {
202 value = cpu_mask_mode(value, cpu.L);
203 if (cpu.L) {

Callers 3

cpu_write_rpFunction · 0.85
cpu_write_rp3Function · 0.85
cpu_executeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected