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

Function cpu_write_byte

core/cpu.c:107–110  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

105 return mem_read_cpu(cpuAddress, false);
106}
107static void cpu_write_byte(uint32_t address, uint8_t value) {
108 uint32_t cpuAddress = cpu_address_mode(address, cpu.L);
109 mem_write_cpu(cpuAddress, value);
110}
111
112static uint32_t cpu_read_word(uint32_t address) {
113 uint32_t value = cpu_read_byte(address);

Callers 5

cpu_write_wordFunction · 0.85
cpu_write_regFunction · 0.85
cpu_write_reg_prefetchedFunction · 0.85
cpu_execute_bliFunction · 0.85
cpu_executeFunction · 0.85

Calls 2

cpu_address_modeFunction · 0.85
mem_write_cpuFunction · 0.85

Tested by

no test coverage detected