mirror of
https://github.com/captain-amygdala/pistorm.git
synced 2026-02-11 18:44:50 +00:00
19 lines
324 B
C
19 lines
324 B
C
/*
|
|
* Copyright 2020-2021 Niklas Ekström
|
|
*/
|
|
|
|
#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();
|