blob: 4c9800bf8dd4e6471a543bd0283b4a84f3e1526c (
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 tms9900 emulator
*/
#include "emu.h"
#include "debugger.h"
#include "tms9900l.h"
#define TMS99XX_MODEL TI990_10_ID
#include "99xxcore.h"
DEFINE_LEGACY_CPU_DEVICE(TI990_10L, ti990_10l);
|