Previous 199869 Revisions Next

r30869 Friday 6th June, 2014 at 19:57:15 UTC by James Wallace
Attempt to fix MPU4Vid regression reported after r30715 (CHR chip expects to only see a byte, not a whole word, as it's a straight lift from 6809 era) (nw)
[src/mame/drivers]mpu4vid.c

trunk/src/mame/drivers/mpu4vid.c
r30868r30869
15071507WRITE16_MEMBER(mpu4vid_state::characteriser16_w )
15081508{
15091509   int x;
1510   int call=data;
1510   int call=(data&0xff);
15111511   LOG_CHR_FULL(("%04x Characteriser write offset %02X data %02X", space.device().safe_pcbase(),offset,data));
15121512
15131513   if (!m_current_chr_table)
r30868r30869
15771577WRITE16_MEMBER(mpu4vid_state::bwb_characteriser16_w )
15781578{
15791579   int x;
1580   int call=data &0xff;
1580   int call=(data &0xff);
15811581   LOG_CHR_FULL(("%04x Characteriser write offset %02X data %02X \n", space.device().safe_pcbase(),offset,data));
15821582   if (!m_current_chr_table)
15831583   {

Previous 199869 Revisions Next


© 1997-2024 The MAME Team