Previous 199869 Revisions Next

r21720 Friday 8th March, 2013 at 19:11:56 UTC by hap
(typo)
[src/emu/cpu/m6800]m6800.c
[src/emu/cpu/m6805]m6805.c
[src/emu/cpu/m6809]hd6309.c konami.c m6809.c
[src/mame/drivers]gunpey.c

trunk/src/emu/cpu/m6800/m6800.c
r21719r21720
44
55    References:
66
7        6809 Simulator V09, By L.C. Benschop, Eidnhoven The Netherlands.
7        6809 Simulator V09, By L.C. Benschop, Eindhoven The Netherlands.
88
99        m6809: Portable 6809 emulator, DS (6809 code in MAME, derived from
1010            the 6809 Simulator V09)
trunk/src/emu/cpu/m6805/m6805.c
r21719r21720
44
55    References:
66
7        6809 Simulator V09, By L.C. Benschop, Eidnhoven The Netherlands.
7        6809 Simulator V09, By L.C. Benschop, Eindhoven The Netherlands.
88
99        m6809: Portable 6809 emulator, DS (6809 code in MAME, derived from
1010            the 6809 Simulator V09)
trunk/src/emu/cpu/m6809/hd6309.c
r21719r21720
99
1010        HD63B09EP Technical Reference Guide, by Chet Simpson with addition
1111                            by Alan Dekok
12        6809 Simulator V09, By L.C. Benschop, Eidnhoven The Netherlands.
12        6809 Simulator V09, By L.C. Benschop, Eindhoven The Netherlands.
1313
1414        m6809: Portable 6809 emulator, DS (6809 code in MAME, derived from
1515            the 6809 Simulator V09)
trunk/src/emu/cpu/m6809/konami.c
r21719r21720
1010
1111    References:
1212
13        6809 Simulator V09, By L.C. Benschop, Eidnhoven The Netherlands.
13        6809 Simulator V09, By L.C. Benschop, Eindhoven The Netherlands.
1414
1515        m6809: Portable 6809 emulator, DS (6809 code in MAME, derived from
1616            the 6809 Simulator V09)
trunk/src/emu/cpu/m6809/m6809.c
r21719r21720
44
55    References:
66
7        6809 Simulator V09, By L.C. Benschop, Eidnhoven The Netherlands.
7        6809 Simulator V09, By L.C. Benschop, Eindhoven The Netherlands.
88
99        m6809: Portable 6809 emulator, DS (6809 code in MAME, derived from
1010            the 6809 Simulator V09)
trunk/src/mame/drivers/gunpey.c
r21719r21720
252252   int m_zero_bit_count;
253253
254254   void get_stream_next_byte(void);
255   int get_steam_bit(void);
255   int get_stream_bit(void);
256256   UINT32 gunpey_state_get_stream_bits(int bits);
257257
258258   int write_dest_byte(UINT8 usedata);
r21719r21720
661661   m_srcx++; m_scrxcount++;
662662}
663663
664int gunpey_state::get_steam_bit(void)
664int gunpey_state::get_stream_bit(void)
665665{
666666   if (m_latched_bits_left==0)
667667   {
r21719r21720
684684   for (int i=0;i<bits;i++)
685685   {
686686      output = output<<1;
687      output |= get_steam_bit();
687      output |= get_stream_bit();
688688   }
689689
690690   return output;

Previous 199869 Revisions Next


© 1997-2024 The MAME Team