diff options
Diffstat (limited to 'src/devices/bus/mc68000/cards.cpp')
-rw-r--r-- | src/devices/bus/mc68000/cards.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/devices/bus/mc68000/cards.cpp b/src/devices/bus/mc68000/cards.cpp new file mode 100644 index 00000000000..2cebfd660af --- /dev/null +++ b/src/devices/bus/mc68000/cards.cpp @@ -0,0 +1,19 @@ +// license: BSD-3-Clause +// copyright-holders: Dirk Best +/*************************************************************************** + + mc-68000-Computer System Bus Cards + +***************************************************************************/ + +#include "emu.h" +#include "cards.h" + +#include "floppy.h" +#include "ram.h" + +void mc68000_sysbus_cards(device_slot_interface &device) +{ + device.option_add("floppy", MC68000_FLOPPY); + device.option_add("ram", MC68000_RAM); +} |