blob: a8ef4fbac253d02d5ef6377f0e7290d40cd24c50 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/***************************************************************************
drcumld.h
Universal machine language disassembler.
Copyright Aaron Giles
Released for general non-commercial use under the MAME license
Visit http://mamedev.org for licensing and usage restrictions.
***************************************************************************/
#pragma once
#ifndef __DRCUMLD_H__
#define __DRCUMLD_H__
#include "drcuml.h"
/***************************************************************************
FUNCTION PROTOTYPES
***************************************************************************/
/* disassemble one instruction */
void drcuml_disasm(const drcuml_instruction *inst, char *buffer);
#endif
|