]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/dac.h
Fixed IMASK access in DSP & GPU, more CPU browser refinements.
[virtualjaguar] / src / dac.h
index ef30549a237436128fa1c4a15ea5c009d1249e98..d0c57202a47db98df3b1e06d3dc7efbf5c7ed21f 100644 (file)
--- a/src/dac.h
+++ b/src/dac.h
@@ -5,17 +5,12 @@
 #ifndef __DAC_H__
 #define __DAC_H__
 
-//this is here, because we have to compensate in more than just dac.cpp...
-#define NEW_DAC_CODE                                                   // New code paths!
-
-//#include "types.h"
 #include "memory.h"
 
 void DACInit(void);
 void DACReset(void);
 void DACDone(void);
-int GetCalculatedFrequency(void);
-void DACSetNewFrequency(int);
+//int GetCalculatedFrequency(void);
 
 // DAC memory access
 
@@ -24,8 +19,4 @@ void DACWriteWord(uint32 offset, uint16 data, uint32 who = UNKNOWN);
 uint8 DACReadByte(uint32 offset, uint32 who = UNKNOWN);
 uint16 DACReadWord(uint32 offset, uint32 who = UNKNOWN);
 
-// Global variables
-
-//extern uint16 lrxd, rrxd;                                                    // I2S ports (into Jaguar)
-
 #endif // __DAC_H__