blob: 11df8801d466f6d0fc2c8b2a2fde6924d1904510 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// license:BSD-3-Clause
// copyright-holders:James Wallace
/*************************************************************************************
AWP Hardware video simulation system
*************************************************************************************/
#ifndef MAME_SHARED_AWPVID_H
#define MAME_SHARED_AWPVID_H
#pragma once
#include "machine/steppers.h"
void awp_draw_reel(running_machine &machine, const char *reeltag, stepper_device &reel);
#endif
|