1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* 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"
struct flag_struct regflags;
int machdep_init (void)
{
return 1;
}
/*
* 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)
{
}