blob: 7c9e0cb0033703b1d97ebc9b21978c66d4ab12a7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
/*************************************************************************
ldstub.c
Laserdisc player stubs.
*************************************************************************/
#include "emu.h"
#include "ldstub.h"
//**************************************************************************
// GLOBAL VARIABLES
//**************************************************************************
// device type definition
const device_type PIONEER_PR7820 = &device_creator<pioneer_pr7820_device>;
const device_type PHILLIPS_22VP932 = &device_creator<phillips_22vp932_device>;
|