summaryrefslogblamecommitdiffstatshomepage
path: root/src/devices/machine/tmc0430.h
blob: a0f49747b887d6abf1d49e0983fa3ec2b6d2c421 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                            



                              
 
                                            
 








                                      
                                                                                                        
 
                                                                                                                                             
 


                                                                            
 


                                            

                                             
                                                                                
         


                                          
         
 

                                
                                                                                
                                                                                   
 
          

                                     
 




                                                                                      
                                  
 

                                      
 

                                     
 




                                
 
                    
                           

                                     
                                      


                                 
 

                                                                                            

                             




                                                                                          
                           

                               
                         

                                                                  
                          


                                                                  


                                                                                                     
 
                                
// license:LGPL-2.1+
// copyright-holders:Michael Zapf
/***************************************************************************

    GROM emulation
    See grom.c for documentation,

    Michael Zapf

    February 2012: Rewritten as class

***************************************************************************/
#ifndef MAME_MACHINE_TMC0430_H
#define MAME_MACHINE_TMC0430_H

#pragma once

DECLARE_DEVICE_TYPE(TMC0430, tmc0430_device)

enum
{
	GROM_M_LINE = 1,
	GROM_MO_LINE = 2
};

class tmc0430_device : public device_t
{
public:
	tmc0430_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);

	template <class Object> devcb_base &set_ready_wr_callback(Object &&cb) { return m_gromready.set_callback(std::forward<Object>(cb)); }

	void readz(uint8_t *value);
	void write(uint8_t data);
	void set_lines(line_state mline, line_state moline, line_state gsq);

	DECLARE_WRITE_LINE_MEMBER(m_line);
	DECLARE_WRITE_LINE_MEMBER(mo_line);
	DECLARE_WRITE_LINE_MEMBER(gsq_line);
	DECLARE_WRITE_LINE_MEMBER(gclock_in);

	void set_region_and_ident(const char *regionname, int offset, int ident)
	{
		m_regionname = regionname;
		m_offset = offset;
		m_ident = ident<<13;
	}

	int debug_get_address();

	// Allow for checking the state of the GROM so we can turn off the clock
	bool idle() { return (m_phase == 0 && m_current_clock_level==CLEAR_LINE); }

protected:
	void device_start() override;
	void device_reset() override;

private:
	// Ready callback. This line is usually connected to the READY pin of the CPU.
	devcb_write_line   m_gromready;

	// Clock line level
	int m_current_clock_level;

	// Currently active GROM ident
	int m_current_ident;

	// Phase of the state machine
	int m_phase;

	// Address or data mode?
	bool m_address_mode;

	// Reading or writing?
	bool m_read_mode;

	// Selected?
	bool    m_selected;

	// Toggle for address loading
	bool        m_address_lowbyte;

	// Region name
	const char* m_regionname;

	// Offset in the region. We cannot rely on the ident because the GROMs
	// in the cartridges begin with ident 3, but start at the beginning of their region.
	int         m_offset;

	// Identification of this GROM (0-7 <<13)
	int         m_ident;

	// The address pointer is always expected to be in the range 0x0000 - 0xffff, even
	// when this GROM is not addressed.
	uint16_t m_address;

	/* GROM data buffer. */
	uint8_t m_buffer;

	/* Pointer to the memory region contained in this GROM. */
	uint8_t *m_memptr;
};

#define MCFG_GROM_ADD(_tag, _ident, _region, _offset, _ready)    \
		MCFG_DEVICE_ADD(_tag, TMC0430, 0)  \
		downcast<tmc0430_device &>(*device).set_region_and_ident(_region, _offset, _ident); \
		downcast<tmc0430_device &>(*device).set_ready_wr_callback(DEVCB_##_ready);

#endif // MAME_MACHINE_TMC0430_H