diff options
Diffstat (limited to 'src/mame/shared/awpvid.h')
-rw-r--r-- | src/mame/shared/awpvid.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/mame/shared/awpvid.h b/src/mame/shared/awpvid.h new file mode 100644 index 00000000000..11df8801d46 --- /dev/null +++ b/src/mame/shared/awpvid.h @@ -0,0 +1,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 |