Search
lxdream.org :: lxdream/src/aica/armdasm.h :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/aica/armdasm.h
changeset 12:7748fcf320b9
next30: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 +0000
1.2 +++ b/src/aica/armdasm.h Sun Dec 11 12:00:28 2005 +0000
1.3 @@ -0,0 +1,21 @@
1.4 +#ifndef armdasm_H
1.5 +#define armdasm_H 1
1.6 +
1.7 +#include "disasm.h"
1.8 +
1.9 +#ifdef __cplusplus
1.10 +extern "C" {
1.11 +#endif
1.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 __cplusplus
1.21 +}
1.22 +#endif
1.23 +
1.24 +#endif
.