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

@@ -212,7 +212,7 @@ opRSTS_a32(uint32_t fetchdat)
}
static int
opSMINT(uint32_t fetchdat)
opSMINT(UNUSED(uint32_t fetchdat))
{
if (in_smm)
fatal("opSMINT\n");
@@ -223,7 +223,7 @@ opSMINT(uint32_t fetchdat)
}
static int
opRDSHR_a16(uint32_t fetchdat)
opRDSHR_a16(UNUSED(uint32_t fetchdat))
{
if (in_smm)
fatal("opRDSHR_a16\n");
@@ -233,7 +233,7 @@ opRDSHR_a16(uint32_t fetchdat)
return 1;
}
static int
opRDSHR_a32(uint32_t fetchdat)
opRDSHR_a32(UNUSED(uint32_t fetchdat))
{
if (in_smm)
fatal("opRDSHR_a32\n");
@@ -244,7 +244,7 @@ opRDSHR_a32(uint32_t fetchdat)
}
static int
opWRSHR_a16(uint32_t fetchdat)
opWRSHR_a16(UNUSED(uint32_t fetchdat))
{
if (in_smm)
fatal("opWRSHR_a16\n");
@@ -254,7 +254,7 @@ opWRSHR_a16(uint32_t fetchdat)
return 1;
}
static int
opWRSHR_a32(uint32_t fetchdat)
opWRSHR_a32(UNUSED(uint32_t fetchdat))
{
if (in_smm)
fatal("opWRSHR_a32\n");