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

@@ -1,5 +1,5 @@
static int
opAAA(uint32_t fetchdat)
opAAA(UNUSED(uint32_t fetchdat))
{
flags_rebuild();
if ((cpu_state.flags & A_FLAG) || ((AL & 0xF) > 9)) {
@@ -46,7 +46,7 @@ opAAM(uint32_t fetchdat)
}
static int
opAAS(uint32_t fetchdat)
opAAS(UNUSED(uint32_t fetchdat))
{
flags_rebuild();
if ((cpu_state.flags & A_FLAG) || ((AL & 0xF) > 9)) {
@@ -63,7 +63,7 @@ opAAS(uint32_t fetchdat)
}
static int
opDAA(uint32_t fetchdat)
opDAA(UNUSED(uint32_t fetchdat))
{
uint16_t tempw;
uint16_t old_AL;
@@ -100,7 +100,7 @@ opDAA(uint32_t fetchdat)
}
static int
opDAS(uint32_t fetchdat)
opDAS(UNUSED(uint32_t fetchdat))
{
uint16_t tempw;
uint16_t old_AL;