Search
lxdream.org :: lxdream/src/aica/armdasm.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/aica/armdasm.h
changeset 12:7748fcf320b9
next30:89b30313d757
author nkeynes
date Sun Dec 25 04:54:40 2005 +0000 (18 years ago)
permissions -rw-r--r--
last change Set disasm PC on startup
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
.