filename | src/aica/armdasm.h |
changeset | 12:7748fcf320b9 |
next | 30:89b30313d757 |
author | nkeynes |
date | Sun Dec 11 12:00:28 2005 +0000 (17 years ago) |
permissions | -rw-r--r-- |
last change | Add armdasm.h header |
view | annotate | diff | log | raw |
1 #ifndef armdasm_H
2 #define armdasm_H 1
4 #include "disasm.h"
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
10 #include <stdio.h>
12 uint32_t arm_disasm_instruction( uint32_t pc, char *buf, int len, char * );
13 uint32_t armt_disasm_instruction( uint32_t pc, char *buf, int len, char * );
14 extern const struct cpu_desc_struct arm_cpu_desc;
15 extern const struct cpu_desc_struct armt_cpu_desc;
17 #ifdef __cplusplus
18 }
19 #endif
21 #endif
.