--- hatari/src/includes/cycInt.h 2019/04/09 08:48:38 1.1 +++ hatari/src/includes/cycInt.h 2019/04/09 08:54:25 1.1.1.6 @@ -1,8 +1,8 @@ /* Hatari - cycInt.h - This file is distributed under the GNU Public License, version 2 or at - your option any later version. Read the file gpl.txt for details. + This file is distributed under the GNU General Public License, version 2 + or at your option any later version. Read the file gpl.txt for details. */ #ifndef HATARI_CYCINT_H @@ -19,12 +19,10 @@ typedef enum INTERRUPT_MFP_TIMERB, INTERRUPT_MFP_TIMERC, INTERRUPT_MFP_TIMERD, + INTERRUPT_ACIA_IKBD, INTERRUPT_IKBD_RESETTIMER, - INTERRUPT_IKBD_ACIA, - INTERRUPT_IKBD_MFP, INTERRUPT_IKBD_AUTOSEND, - INTERRUPT_DMASOUND, - INTERRUPT_DMASOUND_MICROWIRE, + INTERRUPT_DMASOUND_MICROWIRE, /* Used for both STE and Falcon Microwire emulation */ INTERRUPT_CROSSBAR_25MHZ, INTERRUPT_CROSSBAR_32MHZ, INTERRUPT_FDC, @@ -66,6 +64,7 @@ extern void CycInt_AddAbsoluteInterrupt( extern void CycInt_AddRelativeInterrupt(int CycleTime, int CycleType, interrupt_id Handler); extern void CycInt_AddRelativeInterruptNoOffset(int CycleTime, int CycleType, interrupt_id Handler); extern void CycInt_AddRelativeInterruptWithOffset(int CycleTime, int CycleType, interrupt_id Handler, int CycleOffset); +extern void CycInt_ModifyInterrupt(int CycleTime, int CycleType, interrupt_id Handler); extern void CycInt_RemovePendingInterrupt(interrupt_id Handler); extern void CycInt_ResumeStoppedInterrupt(interrupt_id Handler); extern bool CycInt_InterruptActive(interrupt_id Handler);