filename | src/sh4/sh4dasm.h |
changeset | 9:2784c7660165 |
prev | 1:eea311cfd33e |
next | 10:c898b37506e0 |
author | nkeynes |
date | Thu Dec 08 13:38:00 2005 +0000 (17 years ago) |
permissions | -rw-r--r-- |
last change | Generalise the core debug window to allow multiple instances. Add cpu description structure to define different cpus for use by the debug window, in preparation for ARM implementation |
view | annotate | diff | log | raw |
1 #ifndef sh4dasm_H
2 #define sh4dasm_H 1
4 #include "disasm.h"
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
10 #include <stdio.h>
12 int sh4_disasm_instruction( int pc, char *buf, int len );
13 void sh4_disasm_region( FILE *f, int from, int to, int load_addr );
15 extern struct cpu_desc_struct sh4_cpu_desc;
17 #ifdef __cplusplus
18 }
19 #endif
21 #endif
.