emu: Remove LValue implementation for u16

I think this was from when registers were passed by mut ref and this
could update them in place. Now they are wrapped and those wrappers
are LValues instead.
This commit is contained in:
2021-03-24 20:37:55 -07:00
parent 8c359d2c70
commit 5d2fbcd01d

View File

@@ -48,12 +48,6 @@ impl RValue<u8> for u8 {
}
}
impl LValue<u16> for u16 {
fn write(&mut self, val: u16) {
*self = val;
}
}
impl RValue<u16> for u16 {
fn read(&self) -> u16 {
*self