diff options
author | Alcaro | 2017-01-17 00:37:18 +0100 |
---|---|---|
committer | GitHub | 2017-01-17 00:37:18 +0100 |
commit | 6e9a6c9b040035cdc7d015b8bdb21e920c811dca (patch) | |
tree | 73e7755d117b8dd9eea499977c632727deb20d00 /source/dsp1.h | |
parent | 7ed90abe19954aaf1fa56657a08e3cae4c8a67ce (diff) | |
parent | cbbfa871ae3d9db3852d9122a6d8355896c073ed (diff) | |
download | snes9x2005-6e9a6c9b040035cdc7d015b8bdb21e920c811dca.tar.gz snes9x2005-6e9a6c9b040035cdc7d015b8bdb21e920c811dca.tar.bz2 snes9x2005-6e9a6c9b040035cdc7d015b8bdb21e920c811dca.zip |
Merge pull request #26 from jamsilva/master
Cleanups v2
Diffstat (limited to 'source/dsp1.h')
-rw-r--r-- | source/dsp1.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/source/dsp1.h b/source/dsp1.h index 0c18155..7cd97c6 100644 --- a/source/dsp1.h +++ b/source/dsp1.h @@ -20,16 +20,16 @@ uint8_t DSP4GetByte(uint16_t address); typedef struct { - bool waiting4command; - bool first_parameter; - uint8_t command; + bool waiting4command; + bool first_parameter; + uint8_t command; uint32_t in_count; uint32_t in_index; uint32_t out_count; uint32_t out_index; - uint8_t parameters [512]; + 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(); @@ -38,4 +38,3 @@ void S9xSetDSP(uint8_t Byte, uint16_t Address); extern SDSP1 DSP1; #endif - |