summaryrefslogblamecommitdiffstatshomepage
path: root/src/mame/includes/vaportra.h
blob: 8970c96ad40236b004c1d79319334656eaee1179 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

                                  

                                                                          
               

                                                                          



                                
 
                            
                              
                            
                           
                           
 
                                           

       
                                                                                        





                                                        
                                            



                                                        
 
                     
                                              
                                                 
                                                                 
                                                       
                                                                 
                                                  
                                                             
 

                                                       
 
                  
                                  
 

                                          


                                              
 
                             

                                              
 

                                                                                                       
 
                                               
                                              

                                         
  

                                  
// license:BSD-3-Clause
// copyright-holders:Bryan McPhail
/*************************************************************************

    Vapor Trail

*************************************************************************/
#ifndef MAME_INCLUDES_VAPORTRA_H
#define MAME_INCLUDES_VAPORTRA_H

#pragma once

#include "cpu/h6280/h6280.h"
#include "machine/gen_latch.h"
#include "video/bufsprite.h"
#include "video/deco16ic.h"
#include "video/decmxc06.h"

class vaportra_state : public driver_device
{
public:
	vaportra_state(const machine_config &mconfig, device_type type, const char *tag)
		: driver_device(mconfig, type, tag)
		, m_maincpu(*this, "maincpu")
		, m_audiocpu(*this, "audiocpu")
		, m_deco_tilegen(*this, "tilegen%u", 1U)
		, m_spritegen(*this, "spritegen")
		, m_spriteram(*this, "spriteram")
		, m_palette(*this, "colors")
		, m_soundlatch(*this, "soundlatch")
		, m_paletteram(*this, "palette")
		, m_paletteram_ext(*this, "palette_ext")
	{ }

	/* devices */
	required_device<cpu_device> m_maincpu;
	required_device<h6280_device> m_audiocpu;
	required_device_array<deco16ic_device, 2> m_deco_tilegen;
	required_device<deco_mxc06_device> m_spritegen;
	required_device<buffered_spriteram16_device> m_spriteram;
	required_device<palette_device> m_palette;
	required_device<generic_latch_8_device> m_soundlatch;

	required_shared_ptr<uint16_t> m_paletteram;
	required_shared_ptr<uint16_t> m_paletteram_ext;

	/* misc */
	uint16_t    m_priority[2];

	DECLARE_READ8_MEMBER(irq6_ack_r);
	DECLARE_WRITE8_MEMBER(irq6_ack_w);
	DECLARE_WRITE16_MEMBER(priority_w);
	DECLARE_WRITE16_MEMBER(palette_w);
	DECLARE_WRITE16_MEMBER(palette_ext_w);

	void init_vaportra();
	virtual void machine_start() override;
	virtual void machine_reset() override;

	uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
	void update_palette( int offset );

	DECO16IC_BANK_CB_MEMBER(bank_callback);
	void vaportra(machine_config &config);
	void main_map(address_map &map);
	void sound_map(address_map &map);
};

#endif // MAME_INCLUDES_VAPORTRA_H