2015-05-13 18:47:23 +00:00
|
|
|
/*
|
|
|
|
* UAE - The Un*x Amiga Emulator
|
|
|
|
*
|
2015-10-11 14:23:51 +02:00
|
|
|
* Target specific stuff, Pandora version
|
2015-05-13 18:47:23 +00:00
|
|
|
*
|
|
|
|
* Copyright 1997 Bernd Schmidt
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define TARGET_NAME "pandora"
|
|
|
|
|
2015-10-11 14:23:51 +02:00
|
|
|
#define NO_MAIN_IN_MAIN_C
|
2015-05-13 18:47:23 +00:00
|
|
|
|
2015-10-11 14:23:51 +02:00
|
|
|
#define OPTIONSFILENAME "uaeconfig"
|
2015-05-13 18:47:23 +00:00
|
|
|
|
|
|
|
extern int emulating;
|
2016-05-20 09:03:37 +01:00
|
|
|
extern int JoystickButton[20]; //Joystick Button state
|
2015-05-13 18:47:23 +00:00
|
|
|
extern int uae4all_keystate[256];
|
2016-04-24 09:45:29 +00:00
|
|
|
|
|
|
|
extern int z3_start_adr;
|
|
|
|
extern int rtg_start_adr;
|
2015-05-13 18:47:23 +00:00
|
|
|
|
|
|
|
void run_gui(void);
|
2016-04-24 09:45:29 +00:00
|
|
|
void InGameMessage(const char *msg);
|
2015-05-13 18:47:23 +00:00
|
|
|
|
|
|
|
void saveAdfDir(void);
|
|
|
|
void setCpuSpeed(void);
|
|
|
|
void resetCpuSpeed(void);
|
|
|
|
void update_display(struct uae_prefs *);
|
2016-04-24 09:45:29 +00:00
|
|
|
void black_screen_now(void);
|
2015-05-13 18:47:23 +00:00
|
|
|
void graphics_subshutdown (void);
|
|
|
|
|
|
|
|
void pandora_stop_sound(void);
|
|
|
|
|
|
|
|
void keyboard_init(void);
|
2015-10-11 14:23:51 +02:00
|
|
|
|
|
|
|
void reinit_amiga(void);
|
|
|
|
int count_HDs(struct uae_prefs *p);
|
2016-04-25 17:12:37 +00:00
|
|
|
extern void gui_force_rtarea_hdchange(void);
|
|
|
|
extern bool hardfile_testrdb (const TCHAR *filename);
|