|
PZ80emu
0.1
|
display functions for curses management and displaying system info More...

Functions | |
| void | curses_display_mem (WINDOW *win, uint8_t *memory) |
| display the contents of a block of memory to a curses window More... | |
| void | curses_display_registers (WINDOW *win, struct z80 *cpu) |
| display the current register state to a curses window More... | |
| WINDOW * | create_newwin (int height, int width, int starty, int startx) |
| creates a new curses window More... | |
| void | create_newscreen (int main_row, int main_col) |
| creates a new curses screen More... | |
| void | display_mem (uint8_t *memory) |
| display the current memory contents to STDOUT More... | |
| void | display_registers (struct z80 *cpu) |
| display the current register state to STDOUT More... | |
| void | display_bus (struct bus *bus) |
display functions for curses management and displaying system info
| void create_newscreen | ( | int | main_row, |
| int | main_col | ||
| ) |
creates a new curses screen
| main_row | The starting row for the new screen |
| main_col | The starting column for the new screen |
| WINDOW* create_newwin | ( | int | height, |
| int | width, | ||
| int | starty, | ||
| int | startx | ||
| ) |
| void curses_display_mem | ( | WINDOW * | win, |
| uint8_t * | memory | ||
| ) |
| void curses_display_registers | ( | WINDOW * | win, |
| struct z80 * | cpu | ||
| ) |
| void display_mem | ( | uint8_t * | memory | ) |
display the current memory contents to STDOUT
| memory | pointer to a memory for which to display registers. |