PancakeNESEmu
A homebrewed NES Emulator written in C
Loading...
Searching...
No Matches
tui.h
Go to the documentation of this file.
1#ifndef tui_h
2#define tui_h
3
4#include <ncurses.h>
5
6#include "core/cpu.h"
7
12void init_nscreen(const char* local_format);
13
18void printw_cpu_state(CPU* cpu);
19
23void end_nscreen();
24
25#endif // !tui_h
This structure will be used to represent the state of the Central Processing Unit (CPU) of our emulat...
Definition cpu.h:27
void printw_cpu_state(CPU *cpu)
Procedure that displays the current state of the cpu in a ncurses window.
Definition tui.c:14
void init_nscreen(const char *local_format)
Procedure that init the ncurses screen.
Definition tui.c:5
void end_nscreen()
Procedure that kill the current ncurses window.
Definition tui.c:23