Skip to content

Commit

Permalink
Merge pull request #82 from esa-tu-darmstadt/feature/remove_intc0_fro…
Browse files Browse the repository at this point in the history
…m_tapasco_debug

Remove deprecated INTC0 info, fixes #22
  • Loading branch information
cahz authored Jun 12, 2019
2 parents 4bd4ae8 + fca9d6b commit 249fd32
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions examples/tapasco-debug/debug-screens/MonitorScreen.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,6 @@ class MonitorScreen : public MenuScreen {
++sid;
if (sid >= h * w) break;
}
// also render ISRs of INTCs
start_col = (cols - intc_addr.size() * 18) / 2;
for (uint32_t intc = intc_addr.size(); intc > 0; --intc) {
if (intc_isr[intc - 1]) attron(COLOR_PAIR(1)); else attron(A_REVERSE);
mvprintw(0, start_col, "INTC%d: 0x%08x", intc_addr.size() - intc, intc_isr[intc - 1]);
if (intc_isr[intc - 1]) attroff(COLOR_PAIR(1)); else attroff(A_REVERSE);
start_col += 18;
}
// render keyboard hints
attron(A_REVERSE);
mvprintw(rows - 1, cols / 2 - 24,
Expand Down

0 comments on commit 249fd32

Please sign in to comment.