V25: fix false warnings from some GCC versions [R. Belmont]

This commit is contained in:
R. Belmont 2011-01-05 02:15:53 +00:00
parent 9a9709ddaa
commit aceca7f753

View File

@ -26,6 +26,8 @@ int read_sfr(v25_state_t *nec_state, unsigned o)
logerror("%06x: Read from special function register %02x\n",PC(nec_state),o);
return 0;
}
return 0;
}
void write_sfr(v25_state_t *nec_state, unsigned o, unsigned d)