summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/scudsp/scudspdasm.c
blob: f2f65b9545d8b51437ef21b5ca63b387474640f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "emu.h"
#include "debugger.h"
#include "scudsp.h"

CPU_DISASSEMBLE( scudsp )
{
	UINT32 op = oprom[0];
	unsigned size = 1;
//  const char *sym, *sym2;

	switch( op )
	{
		default:
			sprintf(buffer, "???");
			break;
	}

	return size;
}