| 103 | } |
| 104 | |
| 105 | void ProgramDock::fetch_inst_addr(machine::Address addr) { |
| 106 | if (addr != machine::STAGEADDR_NONE) { follow_addr[FOLLOWSRC_FETCH] = addr; } |
| 107 | emit stage_addr_changed(ProgramModel::STAGEADDR_FETCH, addr); |
| 108 | if (follow_source == FOLLOWSRC_FETCH) { update_follow_position(); } |
| 109 | } |
| 110 | |
| 111 | void ProgramDock::decode_inst_addr(machine::Address addr) { |
| 112 | if (addr != machine::STAGEADDR_NONE) { follow_addr[FOLLOWSRC_DECODE] = addr; } |
nothing calls this directly
no outgoing calls
no test coverage detected