]> git.sesse.net Git - pistorm/blob - a314/a314device/startup.h
Add missing copyright to A314 source files
[pistorm] / a314 / a314device / startup.h
1 /*
2  * Copyright 2020-2021 Niklas Ekström
3  */
4
5 #include <exec/types.h>
6 #include <exec/tasks.h>
7 #include <exec/ports.h>
8
9 #define SIGB_INT 14
10 #define SIGB_MSGPORT 15
11
12 #define SIGF_INT (1 << SIGB_INT)
13 #define SIGF_MSGPORT (1 << SIGB_MSGPORT)
14
15 extern struct Task *task;
16 extern struct MsgPort task_mp;
17
18 extern BOOL task_start();