/* epple2 Copyright (C) 2008 by Christopher A. Mosher This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #include #include "emulator.h" #include "configep2.h" #include "gui.h" #include "e2const.h" #include #include #include #include #include static int run(const std::string& config_file) { GUI gui; std::unique_ptr emu(new Emulator()); Config cfg(config_file); emu->config(cfg); emu->init(); return emu->run(); } #ifdef __cplusplus extern "C" #endif int main(int argc, char* argv[]) { setbuf(stdout, NULL); if (argc > 2) { throw std::runtime_error("usage: epple2 [config-file]" ); } int x = E2Const::test(); if (x != -1) { std::cerr << x << std::endl; throw std::runtime_error("bad constant in e2const.h" ); } std::string config_file; if (argc > 1) { config_file = argv[1]; } return run(config_file); }