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

Method gotoPressed

gui/qt/debugger.cpp:1974–1986  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1972// ------------------------------------------------
1973
1974void MainWindow::gotoPressed() {
1975 bool accept;
1976
1977 if (m_gotoAddr.isEmpty()) {
1978 m_gotoAddr = m_disasm->getSelectedAddr();
1979 }
1980
1981 QString address = getAddressString(m_gotoAddr, &accept);
1982
1983 if (accept) {
1984 disasmUpdateAddr(hex2int(m_gotoAddr = address), false);
1985 }
1986}
1987
1988void MainWindow::gotoDisasmAddr(uint32_t address) {
1989 disasmUpdateAddr(address, false);

Callers

nothing calls this directly

Calls 2

hex2intFunction · 0.85
getSelectedAddrMethod · 0.80

Tested by

no test coverage detected