]> Shamusworld >> Repos - virtualjaguar/commitdiff
Added some needed constants, renamed 'pcm.h' to 'dac.h'
authorNeils Wagenaar <sdlemu@ngemu.com>
Sat, 16 Aug 2003 17:25:54 +0000 (17:25 +0000)
committerNeils Wagenaar <sdlemu@ngemu.com>
Sat, 16 Aug 2003 17:25:54 +0000 (17:25 +0000)
src/include/jaguar.h

index f903f1bc0b9e296d5bb7e9bda05f689a71217b1c..6463c2ff29466283e13c8954f5eb04f948853284 100644 (file)
@@ -15,7 +15,7 @@
 #include "clock.h"
 #include "anajoy.h"
 #include "joystick.h"
-#include "pcm.h"
+#include "dac.h"
 #include "jagdasm.h"
 #include "dsnd.h"
 #include "cdrom.h"
@@ -57,7 +57,15 @@ void JaguarExecute(int16 * backbuffer, bool render);
 #define SET16(r, a, v) r[(a)] = ((v) & 0xFF00) >> 8, r[(a)+1] = (v) & 0xFF
 #define GET16(r, a)            ((r[(a)] << 8) | r[(a)+1])
 
-//Temp debug stuff
+// Various clock rates
+
+#define M68K_CLOCK_RATE_PAL            13296950
+#define M68K_CLOCK_RATE_NTSC   13295453
+#define RISC_CLOCK_RATE_PAL            26593900
+#define RISC_CLOCK_RATE_NTSC   26590906
+
+
+//Temp debug stuff (will go away soon, so don't use these)
 
 void DumpMainMemory(void);
 uint8 * GetRamPtr(void);