]> git.sesse.net Git - pistorm/blob - a314/a314device/startup.h
Add A314 emulation
[pistorm] / a314 / a314device / startup.h
1 #include <exec/types.h>
2 #include <exec/tasks.h>
3 #include <exec/ports.h>
4
5 #define SIGB_INT 14
6 #define SIGB_MSGPORT 15
7
8 #define SIGF_INT (1 << SIGB_INT)
9 #define SIGF_MSGPORT (1 << SIGB_MSGPORT)
10
11 extern struct Task *task;
12 extern struct MsgPort task_mp;
13
14 extern BOOL task_start();