Previous 199869 Revisions Next

r40097 Friday 31st July, 2015 at 22:42:55 UTC by hap
fix lilprof78 equals sign
[src/mess/drivers]ticalc1x.c

trunk/src/mess/drivers/ticalc1x.c
r248608r248609
1111
1212  TODO:
1313  - MCU clocks are unknown where noted
14  - lilprof78 equals-sign is always on
1514
1615***************************************************************************/
1716
r248608r248609
686685      m_display_state[y] = (r >> y & 1) ? o : 0;
687686
688687   // 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;
690689
691690   // 6th digit is a custom 7seg for math symbols (see wizatron_state write_r)
692691   m_display_state[6] = BITSWAP8(m_display_state[6],7,6,1,4,2,3,5,0);


Previous 199869 Revisions Next


© 1997-2024 The MAME Team