blob: 88fe1d230f547c06887b28d5a0e097377bbd12fe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
#ifndef MAME_BUS_ST_ROM_H
#define MAME_BUS_ST_ROM_H
// Generic rom cartridge
#pragma once
#include "stcart.h"
DECLARE_DEVICE_TYPE(ST_ROM, device_stcart_interface)
#endif // MAME_BUS_ST_ROM_H
|