aboutsummaryrefslogtreecommitdiff
path: root/source/fxdbg.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/fxdbg.c')
-rw-r--r--source/fxdbg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/fxdbg.c b/source/fxdbg.c
index 75af980..bdfac1f 100644
--- a/source/fxdbg.c
+++ b/source/fxdbg.c
@@ -123,10 +123,10 @@ extern struct FxRegs_s GSU;
void FxPipeString(char* pvString)
{
char* p;
- uint32 vOpcode = (GSU.vStatusReg & 0x300) | ((uint32)PIPE);
+ uint32_t vOpcode = (GSU.vStatusReg & 0x300) | ((uint32_t)PIPE);
const char* m = fx_apvMnemonicTable[vOpcode];
- uint8 vPipe1, vPipe2, vByte1, vByte2;
- uint8 vPipeBank = GSU.vPipeAdr >> 16;
+ uint8_t vPipe1, vPipe2, vByte1, vByte2;
+ uint8_t vPipeBank = GSU.vPipeAdr >> 16;
/* The next two bytes after the pipe's address */
vPipe1 = GSU.apvRomBank[vPipeBank][USEX16(GSU.vPipeAdr + 1)];