blob: ec4afa798fd938530581a24a3a562248746819a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
/***************************************************************************
tmsops.cpp
TMS57002 "DASP" emulator.
***************************************************************************/
#include "emu.h"
#include "tms57002.h"
// Kept separate from tms57002.cpp to avoid the optimizer eating all the memory
#define CINTRP
#include "cpu/tms57002/tms57002.hxx"
#undef CINTRP
|