EMILE/libmacos/macos/events.h
Laurent Vivier 9bd9755dbb Update email address
Signed-off-by: Laurent Vivier <Laurent@Vivier.EU>
2013-09-05 14:45:27 +02:00

23 lines
397 B
C

/*
*
* (c) 2004,2005 Laurent Vivier <Laurent@Vivier.EU>
*
*/
#ifndef __MACOS_EVENTS_H__
#define __MACOS_EVENTS_H__
#include <macos/traps.h>
typedef u_int32_t KeyMap[4];
#ifdef __mc68000__
static inline void GetKeys(KeyMap theKeys)
{
asm("move.l %0, -(%%sp)\n"
Trap(_GetKeys)
:: "g" (theKeys) : "%%d0", UNPRESERVED_REGS );
}
#endif /* __mc68000__ */
#endif /* __MACOS_EVENTS_H__ */