Documented GVF_SAVE_VAR alongside other flags, and removed a query/doubt
[AROS.git] / arch / m68k-mac / include / asm / cpu.h
blobc6dfeb5ec35b4e8877756adce54710b114d0a8f6
1 #ifndef CPU_H
2 #define CPU_H
4 #include <exec/types.h>
6 #define IRQ_LEVEL1 0x064
7 #define IRQ_LEVEL2 0x068
8 #define IRQ_LEVEL3 0x06c
9 #define IRQ_LEVEL4 0x070
10 #define IRQ_LEVEL5 0x074
11 #define IRQ_LEVEL6 0x078
13 #define TRAP_0 0x080
14 #define TRAP_1 0x084
15 #define TRAP_2 0x088
16 #define TRAP_3 0x08c
17 #define TRAP_4 0x090
19 #define INSTALL_IRQ_HANDLER(vectoraddress, routineaddress) \
20 *(ULONG *)vectoraddress = (ULONG)routineaddress
22 #define INSTALL_TRAP_HANDLER(vectoraddress, routineaddress) \
23 *(ULONG *)vectoraddress = (ULONG)routineaddress
26 #endif