1 2 3 4 5 6 7 8 9 10 11 12
#ifndef GBC_RENDER_H #define GBC_RENDER_H #include "gb.h" void term_init(void); void term_restore(void); void render_frame(GB *gb); // Poll keyboard, update gb->buttons. Returns false if quit requested. bool input_poll(GB *gb); #endif