11 lines
157 B
C
11 lines
157 B
C
#ifndef CPU_H
|
|
#define CPU_H
|
|
|
|
int cpu_init ();
|
|
int cpu_close ();
|
|
|
|
int cpu_screen (int rep, int display);
|
|
int cpu_graph_screen (int rep, int display);
|
|
|
|
#endif
|