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

Method decode_inst_addr

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

Source from the content-addressed store, hash-verified

109}
110
111void 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
117void ProgramDock::execute_inst_addr(machine::Address addr) {
118 if (addr != machine::STAGEADDR_NONE) { follow_addr[FOLLOWSRC_EXECUTE] = addr; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected