filename | src/sh4/sh4dasm.h |
changeset | 10:c898b37506e0 |
prev | 9:2784c7660165 |
next | 11:0a82ef380c45 |
author | nkeynes |
date | Sun Dec 11 05:15:36 2005 +0000 (16 years ago) |
permissions | -rw-r--r-- |
last change | Add CPU disasembly options to mode dropdown Split sh4/mem.c into core mem.c and sh4/mem.c Start adding copyright comments to file headers |
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 uint32_t sh4_disasm_instruction( uint32_t 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
.