mirror of
https://github.com/Oibaf66/uae-wii.git
synced 2024-11-14 14:55:09 +01:00
35 lines
599 B
C
35 lines
599 B
C
/*
|
|
* UAE - The Un*x Amiga Emulator
|
|
*
|
|
* Miscellaneous machine dependent support functions and definitions
|
|
*
|
|
* Copyright 1996 Bernd Schmidt
|
|
* Copyright 2004-2005 Richard Drummond
|
|
*/
|
|
|
|
#include "sysconfig.h"
|
|
#include "sysdeps.h"
|
|
|
|
#include "options.h"
|
|
#include "machdep/m68k.h"
|
|
|
|
void machdep_init (void)
|
|
{
|
|
}
|
|
|
|
/*
|
|
* Handle processor-specific cfgfile options
|
|
*/
|
|
void machdep_save_options (FILE *f, const struct uae_prefs *p)
|
|
{
|
|
}
|
|
|
|
int machdep_parse_option (struct uae_prefs *p, const char *option, const char *value)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void machdep_default_options (struct uae_prefs *p)
|
|
{
|
|
}
|