blob: ad7e18d2eba249fdc16781d7e337564dd4784981 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// license:BSD-3-Clause
// copyright-holders:Raphael Nabet
/*
generate the tms9995 emulator
*/
#include "emu.h"
#include "debugger.h"
#include "tms9900l.h"
#define TMS99XX_MODEL TMS9995_ID
#include "99xxcore.h"
DEFINE_LEGACY_CPU_DEVICE(TMS9995L, tms9995l);
|