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









                                                                      



                             
 





                                                                            
 
                                             
                                                                                        




                                                                            


                                     
                                                                                                       

                           

                                                    
 


                                        



                                         
 
                                                                                                                                              
 

                                 

                                             
 
        
                                   
 





                                 
                         
                      


                              
 
                    
                                

  


                                          
 
                               
// license:BSD-3-Clause
// copyright-holders:Tim Lindner
/*********************************************************************

    ds1315.h

    Dallas Semiconductor's Phantom Time Chip DS1315.

    by tim lindner, November 2001.

*********************************************************************/

#ifndef MAME_MACHINE_DS1315_H
#define MAME_MACHINE_DS1315_H

#pragma once

/***************************************************************************
    DEVICE CONFIGURATION MACROS
***************************************************************************/

#define MCFG_DS1315_ADD(_tag) \
	MCFG_DEVICE_ADD(_tag, DS1315, 0)

#define MCFG_DS1315_BACKING_HANDLER(_devcb) \
	devcb = &downcast<ds1315_device &>(*device).set_backing_handler(DEVCB_##_devcb);

/***************************************************************************
    MACROS
***************************************************************************/

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

	// this handler automates the bits 0/2 stuff
	DECLARE_READ8_MEMBER(read);

	DECLARE_READ8_MEMBER(read_0);
	DECLARE_READ8_MEMBER(read_1);
	DECLARE_READ8_MEMBER(read_data);
	DECLARE_READ8_MEMBER(write_data);

	bool chip_enable();
	void chip_reset();

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

protected:
	// device-level overrides
	virtual void device_start() override;
	virtual void device_reset() override;

private:
	devcb_read8 m_backing_read;

	enum mode_t : u8
	{
		DS_SEEK_MATCHING,
		DS_CALENDAR_IO
	};

	// internal state
	mode_t m_mode;

	void fill_raw_data();
	void input_raw_data();

	int m_count;
	uint8_t m_raw_data[8*8];
};

ALLOW_SAVE_TYPE(ds1315_device::mode_t);

DECLARE_DEVICE_TYPE(DS1315, ds1315_device)

#endif // MAME_MACHINE_DS1315_H