RP06: byte-write fix
This commit is contained in:
parent
e09c27bd63
commit
df020cad51
1 changed files with 1 additions and 1 deletions
2
rp06.cpp
2
rp06.cpp
|
@ -106,7 +106,7 @@ void rp06::write_byte(const uint16_t addr, const uint8_t v)
|
||||||
vtemp |= v;
|
vtemp |= v;
|
||||||
}
|
}
|
||||||
|
|
||||||
write_word(addr, vtemp);
|
write_word(addr & ~1, vtemp);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t rp06::compute_offset() const
|
uint32_t rp06::compute_offset() const
|
||||||
|
|
Loading…
Add table
Reference in a new issue