blob: 1f9669409cee9df67d3764b6e43548096f1cc0c0 (
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:R. Belmont
/*********************************************************************
mouse.h
Implemention of the Apple II Mouse Card
*********************************************************************/
#ifndef MAME_BUS_A2BUS_MOUSE_H
#define MAME_BUS_A2BUS_MOUSE_H
#pragma once
#include "a2bus.h"
DECLARE_DEVICE_TYPE(A2BUS_MOUSE, device_a2bus_card_interface)
#endif // MAME_BUS_A2BUS_MOUSE_H
|