trunk/src/mess/drivers/ticalc1x.c
| r248608 | r248609 | |
| 11 | 11 | |
| 12 | 12 | TODO: |
| 13 | 13 | - MCU clocks are unknown where noted |
| 14 | | - lilprof78 equals-sign is always on |
| 15 | 14 | |
| 16 | 15 | ***************************************************************************/ |
| 17 | 16 | |
| r248608 | r248609 | |
| 686 | 685 | m_display_state[y] = (r >> y & 1) ? o : 0; |
| 687 | 686 | |
| 688 | 687 | // 3rd digit A/G(equals sign) is from O7 |
| 689 | | m_display_state[3] = (m_o & 0x80) ? 0x41 : 0; |
| 688 | m_display_state[3] = (r && m_o & 0x80) ? 0x41 : 0; |
| 690 | 689 | |
| 691 | 690 | // 6th digit is a custom 7seg for math symbols (see wizatron_state write_r) |
| 692 | 691 | m_display_state[6] = BITSWAP8(m_display_state[6],7,6,1,4,2,3,5,0); |