blob: ad75862d3b8e4bd7e2ecdc9fba525d215c023558 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// license:BSD-3-Clause
// copyright-holders:Sergey Svishchev
/***************************************************************************
Printer interface
***************************************************************************/
#ifndef MAME_BUS_BK_PRINTER_H
#define MAME_BUS_BK_PRINTER_H
#pragma once
#include "parallel.h"
DECLARE_DEVICE_TYPE(BK_PRINTER, device_bk_parallel_interface)
#endif
|