diff options
Diffstat (limited to 'src/devices/cpu/pps41/mm75op.cpp')
-rw-r--r-- | src/devices/cpu/pps41/mm75op.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/devices/cpu/pps41/mm75op.cpp b/src/devices/cpu/pps41/mm75op.cpp new file mode 100644 index 00000000000..bea107b9fc4 --- /dev/null +++ b/src/devices/cpu/pps41/mm75op.cpp @@ -0,0 +1,16 @@ +// license:BSD-3-Clause +// copyright-holders:hap + +// MM75 opcode handlers + +#include "emu.h" +#include "mm75.h" + + +// opcodes (differences with mm76_device) + +void mm75_device::op_ios() +{ + // IOS: does not have serial I/O + op_illegal(); +} |