Fixed compiler warnings for Windows builds.
Added -Werror to Windows makefiles.
This commit is contained in:
parent
334992ef54
commit
2b892d2a7a
168 changed files with 1927 additions and 1963 deletions
|
|
@ -61,7 +61,7 @@ static int opCALL_far_w(uint32_t fetchdat)
|
|||
{
|
||||
uint32_t old_cs, old_pc;
|
||||
uint16_t new_cs, new_pc;
|
||||
int cycles_old = cycles;
|
||||
int cycles_old = cycles; UNUSED(cycles_old);
|
||||
|
||||
new_pc = getwordf();
|
||||
new_cs = getword(); if (cpu_state.abrt) return 1;
|
||||
|
|
@ -77,7 +77,7 @@ static int opCALL_far_l(uint32_t fetchdat)
|
|||
{
|
||||
uint32_t old_cs, old_pc;
|
||||
uint32_t new_cs, new_pc;
|
||||
int cycles_old = cycles;
|
||||
int cycles_old = cycles; UNUSED(cycles_old);
|
||||
|
||||
new_pc = getlong();
|
||||
new_cs = getword(); if (cpu_state.abrt) return 1;
|
||||
|
|
@ -95,7 +95,7 @@ static int opFF_w_a16(uint32_t fetchdat)
|
|||
{
|
||||
uint16_t old_cs, new_cs;
|
||||
uint32_t old_pc, new_pc;
|
||||
int cycles_old = cycles;
|
||||
int cycles_old = cycles; UNUSED(cycles_old);
|
||||
|
||||
uint16_t temp;
|
||||
|
||||
|
|
@ -172,7 +172,7 @@ static int opFF_w_a32(uint32_t fetchdat)
|
|||
{
|
||||
uint16_t old_cs, new_cs;
|
||||
uint32_t old_pc, new_pc;
|
||||
int cycles_old = cycles;
|
||||
int cycles_old = cycles; UNUSED(cycles_old);
|
||||
|
||||
uint16_t temp;
|
||||
|
||||
|
|
@ -250,7 +250,7 @@ static int opFF_l_a16(uint32_t fetchdat)
|
|||
{
|
||||
uint16_t old_cs, new_cs;
|
||||
uint32_t old_pc, new_pc;
|
||||
int cycles_old = cycles;
|
||||
int cycles_old = cycles; UNUSED(cycles_old);
|
||||
|
||||
uint32_t temp;
|
||||
|
||||
|
|
@ -327,7 +327,7 @@ static int opFF_l_a32(uint32_t fetchdat)
|
|||
{
|
||||
uint16_t old_cs, new_cs;
|
||||
uint32_t old_pc, new_pc;
|
||||
int cycles_old = cycles;
|
||||
int cycles_old = cycles; UNUSED(cycles_old);
|
||||
|
||||
uint32_t temp;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue