Assorted warning fixes

This commit is contained in:
Jasmine Iwanek
2025-01-26 15:15:53 -05:00
parent a5bf0dc9c8
commit 5f273265ae
136 changed files with 1374 additions and 1291 deletions

View File

@@ -47,7 +47,7 @@
cycles -= timing_retf_rm;
static int
opRETF_a16(uint32_t fetchdat)
opRETF_a16(UNUSED(uint32_t fetchdat))
{
int cycles_old = cycles;
UN_USED(cycles_old);
@@ -60,7 +60,7 @@ opRETF_a16(uint32_t fetchdat)
return 0;
}
static int
opRETF_a32(uint32_t fetchdat)
opRETF_a32(UNUSED(uint32_t fetchdat))
{
int cycles_old = cycles;
UN_USED(cycles_old);
@@ -103,7 +103,7 @@ opRETF_a32_imm(uint32_t fetchdat)
}
static int
opIRET_186(uint32_t fetchdat)
opIRET_186(UNUSED(uint32_t fetchdat))
{
int cycles_old = cycles;
UN_USED(cycles_old);
@@ -144,7 +144,7 @@ opIRET_186(uint32_t fetchdat)
}
static int
opIRET_286(uint32_t fetchdat)
opIRET_286(UNUSED(uint32_t fetchdat))
{
int cycles_old = cycles;
UN_USED(cycles_old);
@@ -185,7 +185,7 @@ opIRET_286(uint32_t fetchdat)
}
static int
opIRET(uint32_t fetchdat)
opIRET(UNUSED(uint32_t fetchdat))
{
int cycles_old = cycles;
UN_USED(cycles_old);
@@ -254,7 +254,7 @@ opIRET(uint32_t fetchdat)
}
static int
opIRETD(uint32_t fetchdat)
opIRETD(UNUSED(uint32_t fetchdat))
{
int cycles_old = cycles;
UN_USED(cycles_old);