Previous 199869 Revisions Next

r22092 Monday 25th March, 2013 at 19:00:13 UTC by Angelo Salese
Forgot to hook-up mon_r() (not that it changes much)
[src/mess/drivers]mz3500.c

trunk/src/mess/drivers/mz3500.c
r22091r22092
3030#include "cpu/z80/z80.h"
3131#include "machine/upd765.h"
3232#include "machine/i8255.h"
33#include "machine/pit8253.h"
3334#include "sound/beep.h"
3435#include "video/upd7220.h"
3536
r22091r22092
560561   floppy_image_device *floppy;
561562   floppy = machine().device<floppy_connector>(m_fddnames[m_fdd_sel])->get_device();
562563
563   return ((floppy->idx_r()) << 1) | (m_fdc->get_drq() & 1);
564   return (floppy->mon_r() << 2) | (floppy->idx_r() << 1) | (m_fdc->get_drq() & 1);
564565}
565566
566567WRITE8_MEMBER(mz3500_state::mz3500_fdc_w)

Previous 199869 Revisions Next


© 1997-2024 The MAME Team