blob: def8eb9bee7b7e46ce7ee0552f34ce97fb08a6a8 (
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:hap
/*
Seiko Epson E0C6200 disassembler
*/
#include "emu.h"
#include "debugger.h"
#include "e0c6200.h"
CPU_DISASSEMBLE(e0c6200)
{
return 2;
}
|