summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2022-06-21 18:25:47 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2022-06-21 18:25:47 +0200
commit89d81a5b5163d4ee4fc3f6fc0cc469e066611b13 (patch)
treeadd7f7af7e684f58de5244137658a37a90bbd5e8 /src/mame/includes
parentdef5e8968e6e517df7c45c9b3c8a7e41444feb20 (diff)
New machines marked as NOT_WORKING
---------------------------------- unknown Zilec game on Blue Print hardware [Andy Walker (of AW Electronics) , Dr. Alan Meades , Hammy, Porchy]
Diffstat (limited to 'src/mame/includes')
-rw-r--r--src/mame/includes/blueprnt.h78
1 files changed, 0 insertions, 78 deletions
diff --git a/src/mame/includes/blueprnt.h b/src/mame/includes/blueprnt.h
deleted file mode 100644
index 04763c144b7..00000000000
--- a/src/mame/includes/blueprnt.h
+++ /dev/null
@@ -1,78 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Nicola Salmoria
-/***************************************************************************
-
- Blue Print
-
-***************************************************************************/
-#ifndef MAME_INCLUDES_BLUEPRNT_H
-#define MAME_INCLUDES_BLUEPRNT_H
-
-#pragma once
-
-#include "machine/gen_latch.h"
-#include "emupal.h"
-#include "tilemap.h"
-
-class blueprnt_state : public driver_device
-{
-public:
- blueprnt_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_gfxdecode(*this, "gfxdecode"),
- m_palette(*this, "palette"),
- m_soundlatch(*this, "soundlatch"),
- m_videoram(*this, "videoram"),
- m_scrollram(*this, "scrollram"),
- m_spriteram(*this, "spriteram"),
- m_colorram(*this, "colorram")
- { }
-
- void blueprnt(machine_config &config);
- void grasspin(machine_config &config);
-
-protected:
- virtual void video_start() override;
-
-private:
- /* device/memory pointers */
- required_device<cpu_device> m_maincpu;
- required_device<cpu_device> m_audiocpu;
- required_device<gfxdecode_device> m_gfxdecode;
- required_device<palette_device> m_palette;
- required_device<generic_latch_8_device> m_soundlatch;
- required_shared_ptr<uint8_t> m_videoram;
- required_shared_ptr<uint8_t> m_scrollram;
- required_shared_ptr<uint8_t> m_spriteram;
- required_shared_ptr<uint8_t> m_colorram;
-
- /* video-related */
- tilemap_t *m_bg_tilemap = nullptr;
- int m_gfx_bank = 0;
-
- /* misc */
- int m_dipsw = 0;
-
- uint8_t blueprnt_sh_dipsw_r();
- uint8_t grasspin_sh_dipsw_r();
- void blueprnt_sound_command_w(uint8_t data);
- void blueprnt_coin_counter_w(uint8_t data);
- void blueprnt_videoram_w(offs_t offset, uint8_t data);
- void blueprnt_colorram_w(offs_t offset, uint8_t data);
- void blueprnt_flipscreen_w(uint8_t data);
- void dipsw_w(uint8_t data);
- TILE_GET_INFO_MEMBER(get_bg_tile_info);
- virtual void machine_start() override;
- virtual void machine_reset() override;
- void blueprnt_palette(palette_device &palette) const;
- uint32_t screen_update_blueprnt(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect);
- void blueprnt_map(address_map &map);
- void grasspin_map(address_map &map);
- void sound_io(address_map &map);
- void sound_map(address_map &map);
-};
-
-#endif // MAME_INCLUDES_BLUEPRNT_H