1 /*
2  * E-UAE - The portable Amiga Emulator
3  *
4  * Processor-specific definitions
5  *
6  * Copyright 2005 Richard Drummond
7  */
8 
9 #ifndef MACHDEP_MACHDEP_H
10 #define MACHDEP_MACHDEP_H
11 
12 #define MACHDEP_X86
13 #define MACHDEP_NAME    "amd64"
14 
15 #define HAVE_MACHDEP_TIMER
16 
17 typedef uae_s64 frame_time_t;
18 #define MAX_FRAME_TIME 9223372036854775807LL
19 
20 #endif
21