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