dosbox-wii/include/pic.h

68 lines
1.8 KiB
C
Raw Normal View History

2009-05-02 23:03:37 +02:00
/*
2009-05-03 00:28:34 +02:00
* Copyright (C) 2002-2007 The DOSBox Team
2009-05-02 23:03:37 +02:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2009-05-03 00:02:15 +02:00
* GNU General Public License for more details.
2009-05-02 23:03:37 +02:00
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
2009-05-03 00:18:08 +02:00
#ifndef DOSBOX_PIC_H
#define DOSBOX_PIC_H
2009-05-02 23:03:37 +02:00
2009-05-02 23:27:47 +02:00
2009-05-02 23:43:00 +02:00
/* CPU Cycle Timing */
2009-05-03 00:28:34 +02:00
extern Bit32s CPU_Cycles;
extern Bit32s CPU_CycleLeft;
extern Bit32s CPU_CycleMax;
2009-05-02 23:27:47 +02:00
2009-05-02 23:03:37 +02:00
typedef void (PIC_EOIHandler) (void);
2009-05-03 00:02:15 +02:00
typedef void (* PIC_EventHandler)(Bitu val);
2009-05-02 23:27:47 +02:00
2009-05-02 23:03:37 +02:00
2009-05-02 23:20:05 +02:00
#define PIC_MAXIRQ 15
#define PIC_NOIRQ 0xFF
extern Bitu PIC_IRQCheck;
extern Bitu PIC_IRQActive;
2009-05-02 23:27:47 +02:00
extern Bitu PIC_Ticks;
2009-05-03 00:02:15 +02:00
INLINE float PIC_TickIndex(void) {
return (CPU_CycleMax-CPU_CycleLeft-CPU_Cycles)/(float)CPU_CycleMax;
2009-05-02 23:27:47 +02:00
}
2009-05-03 00:28:34 +02:00
INLINE Bits PIC_TickIndexND(void) {
return CPU_CycleMax-CPU_CycleLeft-CPU_Cycles;
}
2009-05-03 00:02:15 +02:00
INLINE Bits PIC_MakeCycles(double amount) {
return (Bits)(CPU_CycleMax*amount);
2009-05-02 23:27:47 +02:00
}
2009-05-03 00:02:15 +02:00
INLINE double PIC_FullIndex(void) {
2009-05-03 00:37:32 +02:00
return PIC_Ticks+(double)PIC_TickIndex();
2009-05-02 23:27:47 +02:00
}
2009-05-02 23:03:37 +02:00
2009-05-02 23:53:27 +02:00
void PIC_ActivateIRQ(Bitu irq);
void PIC_DeActivateIRQ(Bitu irq);
2009-05-02 23:03:37 +02:00
void PIC_runIRQs(void);
2009-05-02 23:43:00 +02:00
bool PIC_RunQueue(void);
2009-05-02 23:03:37 +02:00
2009-05-03 00:02:15 +02:00
//Delay in milliseconds
void PIC_AddEvent(PIC_EventHandler handler,float delay,Bitu val=0);
2009-05-02 23:27:47 +02:00
void PIC_RemoveEvents(PIC_EventHandler handler);
2009-05-03 00:28:34 +02:00
void PIC_RemoveSpecificEvents(PIC_EventHandler handler, Bitu val);
2009-05-02 23:03:37 +02:00
2009-05-02 23:53:27 +02:00
void PIC_SetIRQMask(Bitu irq, bool masked);
2009-05-02 23:03:37 +02:00
#endif