summaryrefslogblamecommitdiffstatshomepage
path: root/src/mame/machine/mackbd.h
blob: ec6f7a061dc50e60a2df8bf6a1149cbdf164ffd7 (plain) (tree)
1
2
3
4
5
6
7
8

                               

                             
 
            

 








                                                                            
                        

                                                                   
 
                                   
                                                                                                       
 
                                    
 

                                          
          
                                 

                                             
                                                                         
                                                                         
                                                                       
 
                                              

        
                                                       
 

                                           
 
                                   





                                    


                         
                                          
 
                               
// license:BSD-3-Clause
// copyright-holders:R. Belmont
#ifndef MAME_MACHINE_MACKBD_H
#define MAME_MACHINE_MACKBD_H

#pragma once


//**************************************************************************
//  TYPE DEFINITIONS
//**************************************************************************

// ======================> mackbd_device

class mackbd_device :  public device_t
{
public:
	// config helper
	auto clkout_handler() { return m_clkout_handler.bind(); }
	auto dataout_handler() { return m_dataout_handler.bind(); }

	// construction/destruction
	mackbd_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);

	DECLARE_WRITE8_MEMBER(p0_w);

	DECLARE_WRITE_LINE_MEMBER(data_w);

protected:
	// device-level overrides
	virtual void device_start() override;
	virtual void device_reset() override;
	virtual void device_add_mconfig(machine_config &config) override;
	virtual const tiny_rom_entry *device_rom_region() const override;
	virtual ioport_constructor device_input_ports() const override;

	required_device<cpu_device> m_maincpu;

private:
	uint8_t p0, p1, p2, data_from_mac, data_to_mac;

	devcb_write_line m_clkout_handler;
	devcb_write_line m_dataout_handler;

	void scan_kbd_col(int col);

	DECLARE_READ8_MEMBER(p0_r);
	DECLARE_READ8_MEMBER(p1_r);
	DECLARE_WRITE8_MEMBER(p1_w);
	DECLARE_READ8_MEMBER(p2_r);
	DECLARE_WRITE8_MEMBER(p2_w);
};

// device type definition
DECLARE_DEVICE_TYPE(MACKBD, mackbd_device)

#endif // MAME_MACHINE_MACKBD_H