#if !defined(PROFILE_ACCURACY) #error "debugger is only compatible with accuracy profile" #endif #include namespace SFC = SuperFamicom; #include #include #include #include #include #include #include #include using namespace nall; #include using namespace phoenix; #include using namespace ruby; #include "settings/settings.hpp" #include "interface/interface.hpp" #include "debugger/debugger.hpp" #include "tracer/tracer.hpp" #include "window/window.hpp" #include "console/console.hpp" #include "video/video.hpp" #include "cpu/cpu.hpp" #include "smp/smp.hpp" #include "memory/memory.hpp" #include "breakpoint/breakpoint.hpp" #include "properties/properties.hpp" #include "vram/vram.hpp" extern uint8_t laevateinnLogo[121905]; struct Application { bool quit; string basepath; string userpath; string proportionalFont; string proportionalFontBold; string monospaceFont; Application(int argc, char **argv); ~Application(); }; extern Application *application;