diff options
| author | 2013-03-19 07:22:20 +0000 | |
|---|---|---|
| committer | 2013-03-19 07:22:20 +0000 | |
| commit | 0e1f5ad25b25df7c2ec707ec45c544288eb3c683 (patch) | |
| tree | eeef04fdf999692be30c25457fb9b329e1dbfdde /src/mess/machine/thomson.c | |
| parent | 86614c802b9d611d83520fdb43388ae51d31f553 (diff) | |
Cleanups and version bumpmame0148u2
Diffstat (limited to 'src/mess/machine/thomson.c')
| -rw-r--r-- | src/mess/machine/thomson.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mess/machine/thomson.c b/src/mess/machine/thomson.c index 3ebccf4cff9..312bca1d5e4 100644 --- a/src/mess/machine/thomson.c +++ b/src/mess/machine/thomson.c @@ -480,8 +480,8 @@ WRITE8_MEMBER( thomson_state::to7_timer_port_out ) thom_set_mode_point( data & 1 ); /* bit 0: video bank switch */ thom_set_caps_led( (data & 8) ? 1 : 0 ) ; /* bit 3: keyboard led */ thom_set_border_color( ((data & 0x10) ? 1 : 0) | /* bits 4-6: border color */ - ((data & 0x20) ? 2 : 0) | - ((data & 0x40) ? 4 : 0) ); + ((data & 0x20) ? 2 : 0) | + ((data & 0x40) ? 4 : 0) ); } @@ -1571,9 +1571,9 @@ WRITE8_MEMBER( thomson_state::to770_timer_port_out ) thom_set_mode_point( data & 1 ); /* bit 0: video bank switch */ thom_set_caps_led( (data & 8) ? 1 : 0 ) ; /* bit 3: keyboard led */ thom_set_border_color( ((data & 0x10) ? 1 : 0) | /* 4-bit border color */ - ((data & 0x20) ? 2 : 0) | - ((data & 0x40) ? 4 : 0) | - ((data & 0x04) ? 0 : 8) ); + ((data & 0x20) ? 2 : 0) | + ((data & 0x40) ? 4 : 0) | + ((data & 0x04) ? 0 : 8) ); } |
