mirror of
https://github.com/captain-amygdala/pistorm.git
synced 2026-05-05 23:44:11 +00:00
15 lines
277 B
C
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();
|