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

Function cpu_push_word

core/cpu.c:141–147  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

139}
140
141static void cpu_push_word(uint32_t value) {
142 if (cpu.L) {
143 cpu_push_byte(value >> 16);
144 }
145 cpu_push_byte(value >> 8);
146 cpu_push_byte(value);
147}
148
149static uint32_t cpu_pop_word(void) {
150 uint32_t value = cpu_pop_byte();

Callers 3

cpu_rstFunction · 0.85
cpu_callFunction · 0.85
cpu_executeFunction · 0.85

Calls 1

cpu_push_byteFunction · 0.85

Tested by

no test coverage detected