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

Function debug_ports

core/debug/debug.c:154–161  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

152}
153
154void debug_ports(uint16_t addr, int mask, bool set) {
155 addr &= 0xFFFF;
156 if (set) {
157 debug.port[addr] |= mask;
158 } else {
159 debug.port[addr] &= ~mask;
160 }
161}
162
163void debug_flag(int mask, bool set) {
164 if (set) {

Callers 2

portRemoveRowMethod · 0.85
portModifiedMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected