aboutsummaryrefslogtreecommitdiff
path: root/source/dsp1.h
diff options
context:
space:
mode:
authorJoão Silva2017-06-18 16:16:19 +0100
committerJoão Silva2017-06-18 16:16:19 +0100
commitbcaf44c511efaad9d803dde9b0fdbb046498c66f (patch)
treec526c7d332be548a42364eea9113b6d33345b840 /source/dsp1.h
parent10a58e72aa3f74a821fa9be07ffd3992ffa93600 (diff)
downloadsnesemu-bcaf44c511efaad9d803dde9b0fdbb046498c66f.tar.gz
snesemu-bcaf44c511efaad9d803dde9b0fdbb046498c66f.tar.bz2
snesemu-bcaf44c511efaad9d803dde9b0fdbb046498c66f.zip
Support for savestate versioning. Plenty of cleanups.
Diffstat (limited to 'source/dsp1.h')
-rw-r--r--source/dsp1.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/dsp1.h b/source/dsp1.h
index 7cd97c6..4cc2eca 100644
--- a/source/dsp1.h
+++ b/source/dsp1.h
@@ -28,11 +28,10 @@ typedef struct
uint32_t out_count;
uint32_t out_index;
uint8_t parameters [512];
- //output was 512 for DSP-2 work, updated to reflect current thinking on DSP-3
- uint8_t output [512];
+ uint8_t output [512];
} SDSP1;
-void S9xResetDSP1();
+void S9xResetDSP1(void);
uint8_t S9xGetDSP(uint16_t Address);
void S9xSetDSP(uint8_t Byte, uint16_t Address);
extern SDSP1 DSP1;