blob: 20f0cefbf23d414c9465530a32361c1fe1b47d8d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// license:BSD-3-Clause
// copyright-holders:Fabio Priuli
#ifndef MAME_BUS_SCV_ROM_H
#define MAME_BUS_SCV_ROM_H
#pragma once
#include "slot.h"
// device type definition
DECLARE_DEVICE_TYPE(SCV_ROM8K, device_scv_cart_interface)
DECLARE_DEVICE_TYPE(SCV_ROM16K, device_scv_cart_interface)
DECLARE_DEVICE_TYPE(SCV_ROM32K, device_scv_cart_interface)
DECLARE_DEVICE_TYPE(SCV_ROM32K_RAM8K, device_scv_cart_interface)
DECLARE_DEVICE_TYPE(SCV_ROM64K, device_scv_cart_interface)
DECLARE_DEVICE_TYPE(SCV_ROM128K, device_scv_cart_interface)
DECLARE_DEVICE_TYPE(SCV_ROM128K_RAM4K, device_scv_cart_interface)
#endif // MAME_BUS_SCV_ROM_H
|