Files
captain-amygdala.pistorm/a314/a314device/startup.h
Niklas Ekström 96f185f30d Add A314 emulation
2020-12-01 21:27:36 +01:00

15 lines
277 B
C

#include <exec/types.h>
#include <exec/tasks.h>
#include <exec/ports.h>
#define SIGB_INT 14
#define SIGB_MSGPORT 15
#define SIGF_INT (1 << SIGB_INT)
#define SIGF_MSGPORT (1 << SIGB_MSGPORT)
extern struct Task *task;
extern struct MsgPort task_mp;
extern BOOL task_start();