Commit df9b1bb3 authored by GnoStiC's avatar GnoStiC

puae 2.3.1

parent 34c99a2e
......@@ -54,3 +54,4 @@ STATIC_INLINE void do_put_mem_byte(uae_u8 *a, uae_u8 v)
#undef NO_INLINE_MEMORY_ACCESS
#undef MD_HAVE_MEM_1_FUNCS
#define ALIGN_POINTER_TO32(p) ((~(unsigned long)(p)) & 3)
......@@ -4,5 +4,23 @@
* Definitions for accessing cycle counters on a given machine, if possible.
*
* Copyright 1998 Bernd Schmidt
* Copyright 2004 Richard Drummond
* Copyright 2011 Mustafa TUFAN
*/
#ifndef EUAE_MACHDEP_RPT_H
#define EUAE_MACHDEP_RPT_H
STATIC_INLINE uae_s32 read_processor_time (void)
{
return 0;
}
STATIC_INLINE frame_time_t machdep_gethrtime (void)
{
return read_processor_time ();
}
frame_time_t machdep_gethrtimebase (void);
int machdep_inithrtimer (void);
#endif /* EUAE_MACHDEP_RPT_H */
......@@ -38,3 +38,5 @@ static __inline__ void do_put_mem_byte(uae_u8 *a, uae_u8 v)
#define call_mem_get_func(func, addr) ((*func)(addr))
#define call_mem_put_func(func, addr, v) ((*func)(addr, v))
#define ALIGN_POINTER_TO32(p) ((~(unsigned long)(p)) & 3)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment