R-20 Simulator
 Alle Dateien Funktionen Variablen Makrodefinitionen
display.h
gehe zur Dokumentation dieser Datei
1 //
2 // display.h
3 //
4 
5 #ifndef DISPLAY_H
6 #define DISPLAY_H
7 
8 #include "core.h"
9 
10 extern WINDOW* wnd;
11 extern int nrows;
12 extern int ncols;
13 
14 void init_display();
15 void rtostr(char* str, char* r);
16 void screen_refresh();
17 void err_error(char* str);
18 void overflow(char* r);
19 void close_display();
20 
21 #endif // DISPLAY_H