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
RevLine 
[ff8d800]1#include <all.h>
[d54045b]2
3int32_t main(int32_t argc, char *argv[])
4{
5 (void)argc;
6 (void)argv;
[ff8d800]7
8 sdl_init();
9
10 cpu_verbose = true;
11 cpu_loop();
12
13 sdl_quit();
[d54045b]14 return 0;
15}
Note: See TracBrowser for help on using the repository browser.