mirror of
https://github.com/Oibaf66/uae-wii.git
synced 2024-11-13 06:15:14 +01:00
19 lines
289 B
C
19 lines
289 B
C
/*
|
|
* E-UAE - The portable Amiga Emulator
|
|
*
|
|
* Processor-specific definitions
|
|
*/
|
|
|
|
#ifndef MACHDEP_MACHDEP_H
|
|
#define MACHDEP_MACHDEP_H
|
|
|
|
#define MACHDEP_PPC
|
|
#define MACHDEP_NAME "ppc"
|
|
|
|
#define HAVE_MACHDEP_TIMER
|
|
|
|
typedef uae_s32 frame_time_t;
|
|
#define MAX_FRAME_TIME ((1<<31)-1)
|
|
|
|
#endif
|