mirror of
https://github.com/holub/mame
synced 2025-04-17 22:13:04 +03:00

* The hopper is hooked up because an input for it appears in the I/O test, however both the Payout and Ticket buttons seem to use the ticker dispenser to pay out credits. -machine/sc16is741.cpp: Implemented CTS/RTS deasserted interrupt. -bus/spectrum/musicmachine.cpp: Get device out of global namespace, and some cleanup. -lnux4004.xml: Include Linux distro in software item description.
21 lines
445 B
C
21 lines
445 B
C
// license:BSD-3-Clause
|
|
// copyright-holders:Barry Rodewald
|
|
/*
|
|
* The Music Machine - MIDI and sampling expansion
|
|
* by Ram Electronics
|
|
*
|
|
* Contains a 6850 AICA, Ferranti ZN429E8 DAC and ZN449 ADC
|
|
*/
|
|
|
|
#ifndef MAME_BUS_SPECTRUM_MUSICMACHINE_H
|
|
#define MAME_BUS_SPECTRUM_MUSICMACHINE_H
|
|
|
|
#pragma once
|
|
|
|
#include "exp.h"
|
|
|
|
|
|
DECLARE_DEVICE_TYPE(SPECTRUM_MUSICMACHINE, device_spectrum_expansion_interface)
|
|
|
|
#endif // MAME_BUS_SPECTRUM_MUSICMACHINE_H
|