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 |
file | annotate | diff | log | raw |
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +00001.2 +++ b/src/aica/armdasm.h Sun Dec 11 12:00:28 2005 +00001.3 @@ -0,0 +1,21 @@1.4 +#ifndef armdasm_H1.5 +#define armdasm_H 11.6 +1.7 +#include "disasm.h"1.8 +1.9 +#ifdef __cplusplus1.10 +extern "C" {1.11 +#endif1.12 +1.13 +#include <stdio.h>1.14 +1.15 +uint32_t arm_disasm_instruction( uint32_t pc, char *buf, int len, char * );1.16 +uint32_t armt_disasm_instruction( uint32_t pc, char *buf, int len, char * );1.17 +extern const struct cpu_desc_struct arm_cpu_desc;1.18 +extern const struct cpu_desc_struct armt_cpu_desc;1.19 +1.20 +#ifdef __cplusplus1.21 +}1.22 +#endif1.23 +1.24 +#endif
.