machineid: Don't decode board register address.

All addresses return the same value. Converted for Board Register 1 and Board Register 66.
This commit is contained in:
joevt 2024-01-29 17:24:48 -08:00 committed by dingusdev
parent abe0c14301
commit 077e6ebae5
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ public:
~BoardRegister() = default;
uint16_t iodev_read(uint32_t address) {
return (!address) ? this->data : 0xFFFFU;
return this->data;
};
// appears read-only to guest