RP06: byte-write fix

This commit is contained in:
folkert van heusden 2024-06-13 20:36:25 +02:00
parent e09c27bd63
commit df020cad51
Signed by untrusted user who does not match committer: folkert
GPG key ID: 6B6455EDFEED3BD1

View file

@ -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