1 #ifndef HARDWARE_INTBITS_H 2 #define HARDWARE_INTBITS_H 3 4 /* 5 interrupt bits 6 7 Copyright © 2002 The MorphOS Development Team, All Rights Reserved. 8 */ 9 10 11 #define INTB_SETCLR (15) 12 #define INTB_INTEN (14) 13 #define INTB_EXTER (13) 14 #define INTB_DSKSYNC (12) 15 #define INTB_RBF (11) 16 #define INTB_AUD3 (10) 17 #define INTB_AUD2 (9) 18 #define INTB_AUD1 (8) 19 #define INTB_AUD0 (7) 20 #define INTB_BLIT (6) 21 #define INTB_VERTB (5) 22 #define INTB_COPER (4) 23 #define INTB_PORTS (3) 24 #define INTB_SOFTINT (2) 25 #define INTB_DSKBLK (1) 26 #define INTB_TBE (0) 27 28 #define INTF_SETCLR (1<<INTB_SETCLR) 29 #define INTF_INTEN (1<<INTB_INTEN) 30 #define INTF_EXTER (1<<INTB_EXTER) 31 #define INTF_DSKSYNC (1<<INTB_DSKSYNC) 32 #define INTF_RBF (1<<INTB_RBF) 33 #define INTF_AUD3 (1<<INTB_AUD3) 34 #define INTF_AUD2 (1<<INTB_AUD2) 35 #define INTF_AUD1 (1<<INTB_AUD1) 36 #define INTF_AUD0 (1<<INTB_AUD0) 37 #define INTF_BLIT (1<<INTB_BLIT) 38 #define INTF_VERTB (1<<INTB_VERTB) 39 #define INTF_COPER (1<<INTB_COPER) 40 #define INTF_PORTS (1<<INTB_PORTS) 41 #define INTF_SOFTINT (1<<INTB_SOFTINT) 42 #define INTF_DSKBLK (1<<INTB_DSKBLK) 43 #define INTF_TBE (1<<INTB_TBE) 44 45 46 #endif /* HARDWARE_INTBITS_H */