| 109 | } |
| 110 | |
| 111 | void ProgramDock::decode_inst_addr(machine::Address addr) { |
| 112 | if (addr != machine::STAGEADDR_NONE) { follow_addr[FOLLOWSRC_DECODE] = addr; } |
| 113 | emit stage_addr_changed(ProgramModel::STAGEADDR_DECODE, addr); |
| 114 | if (follow_source == FOLLOWSRC_DECODE) { update_follow_position(); } |
| 115 | } |
| 116 | |
| 117 | void ProgramDock::execute_inst_addr(machine::Address addr) { |
| 118 | if (addr != machine::STAGEADDR_NONE) { follow_addr[FOLLOWSRC_EXECUTE] = addr; } |
nothing calls this directly
no outgoing calls
no test coverage detected