mirror of
https://github.com/Retropex/dolphin.git
synced 2025-06-05 00:42:32 +02:00

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@309 8ced0084-cf51-0410-be5f-012b33b47a6e
83 lines
1.3 KiB
C++
83 lines
1.3 KiB
C++
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#ifndef _WIN32
|
|
//#include <curses.h>
|
|
#else
|
|
#endif
|
|
|
|
#include "Globals.h"
|
|
#include "Common.h"
|
|
#include "ISOFile.h"
|
|
#include "CPUDetect.h"
|
|
|
|
#include "BootManager.h"
|
|
void* g_pCodeWindow = NULL;
|
|
void* main_frame = NULL;
|
|
bool wxPanicAlert(const char* text, bool /*yes_no*/)
|
|
{
|
|
return(true);
|
|
}
|
|
|
|
|
|
void Host_BootingStarted(){}
|
|
|
|
|
|
void Host_BootingEnded(){}
|
|
|
|
|
|
// OK, this thread boundary is DANGEROUS on linux
|
|
// wxPostEvent / wxAddPendingEvent is the solution.
|
|
void Host_NotifyMapLoaded(){}
|
|
|
|
|
|
void Host_UpdateLogDisplay(){}
|
|
|
|
|
|
void Host_UpdateDisasmDialog(){}
|
|
|
|
|
|
void Host_UpdateMainFrame(){}
|
|
|
|
void Host_UpdateBreakPointView(){}
|
|
|
|
|
|
void Host_UpdateMemoryView(){}
|
|
|
|
|
|
void Host_SetDebugMode(bool){}
|
|
|
|
|
|
void Host_SetWaitCursor(bool enable){}
|
|
|
|
|
|
void Host_CreateDisplay(){}
|
|
|
|
|
|
void Host_CloseDisplay(){}
|
|
|
|
void Host_UpdateStatusBar(const char* _pText){}
|
|
|
|
// Include SDL header so it can hijack main().
|
|
#include "SDL.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
if (argc != 2)
|
|
{
|
|
puts("Please supply at least one argument - the ISO to boot.\n");
|
|
return(1);
|
|
}
|
|
std::string temp;
|
|
temp.insert(0, argv[1]); //Need to convert to C++ style string first
|
|
|
|
DetectCPU();
|
|
BootManager::BootCore(temp);
|
|
usleep(2000 * 1000 * 1000);
|
|
// while (!getch()) {
|
|
// usleep(20);
|
|
// }
|
|
return(0);
|
|
}
|
|
|
|
|