X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fjerry.h;h=fd008d9355581c4f9a9cf12b522f98f2021ffd15;hb=f0e50fb1d23805881b72d51ea603be78b645ec97;hp=c1f1f7ad6d0ad71dc0b24ac60c0c3b588172a55e;hpb=d239de704f276a75d927900e3d413a44cc87116c;p=virtualjaguar diff --git a/src/jerry.h b/src/jerry.h index c1f1f7a..fd008d9 100644 --- a/src/jerry.h +++ b/src/jerry.h @@ -5,7 +5,8 @@ #ifndef __JERRY_H__ #define __JERRY_H__ -#include "types.h" +//#include "types.h" +#include "memory.h" void JERRYInit(void); void JERRYReset(void); @@ -26,4 +27,13 @@ enum { IRQ2_EXTERNAL = 0, IRQ2_DSP, IRQ2_TIMER1, IRQ2_TIMER2, IRQ2_ASI, IRQ2_SSI bool JERRYIRQEnabled(int irq); void JERRYSetPendingIRQ(int irq); +// This should stay inside this file, but it's here for now... +// Need to set up an interface function so that this can go back +void JERRYI2SCallback(void); + +// External variables + +extern uint32 JERRYI2SInterruptDivide; +extern int32 JERRYI2SInterruptTimer; + #endif