source: buchla-emu/emu/main.c@ ff8d800

Last change on this file since ff8d800 was ff8d800, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Added SDL2 support.

  • Property mode set to 100644
File size: 163 bytes
Line 
1#include <all.h>
2
3int32_t main(int32_t argc, char *argv[])
4{
5 (void)argc;
6 (void)argv;
7
8 sdl_init();
9
10 cpu_verbose = true;
11 cpu_loop();
12
13 sdl_quit();
14 return 0;
15}
Note: See TracBrowser for help on using the repository browser.