# HG changeset patch # User nkeynes # Date 1134302428 0 # Node ID 7748fcf320b972477b00e8631ea2f3b05263e7e9 # Parent 0a82ef380c45484ff79a36b7b533492a0ea1a20a Add armdasm.h header --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/aica/armdasm.h Sun Dec 11 12:00:28 2005 +0000 @@ -0,0 +1,21 @@ +#ifndef armdasm_H +#define armdasm_H 1 + +#include "disasm.h" + +#ifdef __cplusplus +extern "C" { +#endif + +#include + +uint32_t arm_disasm_instruction( uint32_t pc, char *buf, int len, char * ); +uint32_t armt_disasm_instruction( uint32_t pc, char *buf, int len, char * ); +extern const struct cpu_desc_struct arm_cpu_desc; +extern const struct cpu_desc_struct armt_cpu_desc; + +#ifdef __cplusplus +} +#endif + +#endif