More work on docs for the new opcodes.
[retro/experimental.git] / ngaro / c-mat / functions.h
blobabff07779787877327fa9d862d3cf00d70fd49d1
1 #ifndef _FUNCTIONS_H
2 #define _FUNCTIONS_H
4 /* FILE: tty_devices.c */
5 void draw_character(int character);
6 void handle_devices();
7 void init_devices();
8 void cleanup_devices();
10 /* FILE: endian.c */
11 void swapEndian();
13 /* FILE: loader.c */
14 int vm_load_image(char *image);
15 int vm_save_image(char *image);
17 /* FILE: ngaro.c */
18 int main(int argc, char **argv);
20 /* FILE: video.c */
21 void drawpixel(int x, int color);
22 int update_display(void *unused);
24 /* FILE: vm.c */
25 void init_vm();
26 void vm_process();
28 #endif