mirror of
https://github.com/satoshinm/pill_6502.git
synced 2025-01-13 21:32:58 +00:00
fake6502: comment out unused static function getvalue16()
Unused and causes compiler warning/error https://stackoverflow.com/questions/11124895/suppress-compiler-warning-function-declared-never-referenced
This commit is contained in:
parent
83fed56a0b
commit
efb8da7c7a
@ -307,9 +307,11 @@ static uint16_t getvalue() {
|
||||
else return((uint16_t)read6502(ea));
|
||||
}
|
||||
|
||||
/* unused
|
||||
static uint16_t getvalue16() {
|
||||
return((uint16_t)read6502(ea) | ((uint16_t)read6502(ea+1) << 8));
|
||||
}
|
||||
*/
|
||||
|
||||
static void putvalue(uint16_t saveval) {
|
||||
if (addrtable[opcode] == acc) a = (uint8_t)(saveval & 0x00FF);
|
||||
|
Loading…
x
Reference in New Issue
Block a user