for the moment, at least: make parallel card 7-bit

This commit is contained in:
Jorj Bauer 2017-02-22 03:31:48 -05:00
parent c9d30fb4d0
commit d6d20877fa
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ uint8_t ParallelCard::readSwitches(uint8_t s)
void ParallelCard::writeSwitches(uint8_t s, uint8_t v)
{
if (s == 0x00) {
fx80->input(v);
fx80->input(v & 0x7F); // Note: not 8-bit clean!
} else {
// printf("unknown switch 0x%X\n", s);
}