MCPcopy Create free account
hub / github.com/cvut/qtrvsim / fetch_inst_addr

Method fetch_inst_addr

src/gui/windows/program/programdock.cpp:105–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

103}
104
105void 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
111void ProgramDock::decode_inst_addr(machine::Address addr) {
112 if (addr != machine::STAGEADDR_NONE) { follow_addr[FOLLOWSRC_DECODE] = addr; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected