Skip to content

Commit

Permalink
z80: extend language bodge to Z80 with 2.0 client ROM
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Fosdick committed Oct 13, 2023
1 parent 1ae23d9 commit 2c3bdbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmos.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ static uint8_t get_cmos(unsigned addr)
else {
uint8_t value = cmos[addr];
if (addr == 0x13) {
if (curtube == 2)
if (curtube == 2 || curtube == 8)
value = cmos_fix_tube_lang(value, 8);
else if (curtube == 9)
value = cmos_fix_tube_lang(value, 7);
Expand Down

0 comments on commit 2c3bdbd

Please sign in to comment.