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

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

Added skeleton device files.

  • Property mode set to 100644
File size: 853 bytes
RevLine 
[a06aa8b]1/*
2 * Copyright (C) 2017 The Contributors
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or (at
7 * your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * A copy of the GNU General Public License can be found in the file
15 * "gpl-v3.txt" in the top directory of this repository.
16 */
17
[ff8d800]18#include <all.h>
[d54045b]19
20int32_t main(int32_t argc, char *argv[])
21{
22 (void)argc;
23 (void)argv;
[ff8d800]24
25 sdl_init();
26
27 cpu_verbose = true;
28 cpu_loop();
29
30 sdl_quit();
[d54045b]31 return 0;
32}
Note: See TracBrowser for help on using the repository browser.