EMILE/libmacos/macos/init.h

26 lines
459 B
C
Raw Normal View History

2005-11-08 02:02:16 +00:00
/*
*
* (c) 2004,2005 Laurent Vivier <Laurent@lvivier.info>
2005-11-08 02:02:16 +00:00
*
*/
#ifndef __MACOS_INIT_H__
#define __MACOS_INIT_H__
#include <macos/traps.h>
statis inline void InitEvents(short CntEvts)
{
asm("move.l %0, %%d0\n"
Trap(_InitEvents)
:: "g" (CntEvts) : "%%d0", UNPRESERVED_REGS);
}
static inline void InitFS(short CntFCBs)
{
asm("move.l %0, %%d0\n"
Trap(_InitFs)
:: "g" (CntFCBs) : "%%d0", UNPRESERVED_REGS);
}
#endif /* __MACOS_INIT_H__ */