blob: 303b8edd848b535c62b2d4e26b39fe1b679d5bc1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// license:MAME
// copyright-holders:Raphael Nabet
/*
generate the tms9980a/tms9981 emulator
*/
#include "emu.h"
#include "debugger.h"
#include "tms9900l.h"
#define TMS99XX_MODEL TMS9980_ID
#include "99xxcore.h"
DEFINE_LEGACY_CPU_DEVICE(TMS9980L, tms9980al);
|