diff options
Diffstat (limited to 'source/seta.c')
-rw-r--r-- | source/seta.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/seta.c b/source/seta.c index cce8330..895fa32 100644 --- a/source/seta.c +++ b/source/seta.c @@ -88,15 +88,15 @@ *******************************************************************************/ #include "seta.h" -void (*SetSETA)(uint32, uint8) = &S9xSetST010; -uint8(*GetSETA)(uint32) = &S9xGetST010; +void (*SetSETA)(uint32_t, uint8_t) = &S9xSetST010; +uint8_t(*GetSETA)(uint32_t) = &S9xGetST010; -uint8 S9xGetSetaDSP(uint32 Address) +uint8_t S9xGetSetaDSP(uint32_t Address) { return GetSETA(Address); } -void S9xSetSetaDSP(uint8 Byte, uint32 Address) +void S9xSetSetaDSP(uint8_t Byte, uint32_t Address) { SetSETA(Address, Byte); } |