| 1151 | } |
| 1152 | |
| 1153 | void MainWindow::portPopulate(int currRow) { |
| 1154 | uint16_t port = static_cast<uint16_t>(hex2int(m_ports->item(currRow, PORT_ADDR_COL)->text())); |
| 1155 | uint8_t read = static_cast<uint8_t>(port_peek_byte(port)); |
| 1156 | |
| 1157 | m_ports->item(currRow, PORT_VALUE_COL)->setText(int2hex(read, 2)); |
| 1158 | } |
| 1159 | |
| 1160 | void MainWindow::portAddSlot() { |
| 1161 | portAdd(0, DBG_MASK_NONE, true); |
nothing calls this directly
no test coverage detected