summaryrefslogblamecommitdiffstatshomepage
path: root/src/devices/machine/spchrom.h
blob: 42d8a10760112ca062b76635d45eaba1bd85f5c3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
                       
                                                                                                              













                                        
                                                                                                        




                                         
                                                                         

                                 
                                             


                                                                           

                                                                                                         

                                                                                                    
                       






                                   
// license:BSD-3-Clause
// copyright-holders:Frank Palazzolo, Aaron Giles, Jonathan Gevaryahu, Raphael Nabet, Couriersud, Michael Zapf
/*
 * Voice Synthesis Memory
 *
 */

#ifndef __SPCHROMS_H
#define __SPCHROMS_H

#include "emu.h"

class speechrom_device : public device_t
{
public:
	// construction/destruction
	speechrom_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);

	/// TODO: implement bus behaviour
	int read(int count);
	void load_address(int data);
	void read_and_branch();
	void set_reverse_bit_order(bool reverse) { m_reverse = reverse; }

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

private:
	UINT8 *m_speechrom_data;           /* pointer to speech ROM data */
	unsigned int m_speechROMlen;       /* length of data pointed by speechrom_data, from 0 to 2^18 */
	unsigned int m_speechROMaddr;      /* 18 bit pointer in ROM */
	int m_load_pointer;                /* which 4-bit nibble will be affected by load address */
	int m_ROM_bits_count;              /* current bit position in ROM */
	bool m_reverse;
};


// device type definition
extern const device_type SPEECHROM;

#endif