kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

disasm.h (383B)


      1 #ifndef KIT_ARCH_AA64_DISASM_H
      2 #define KIT_ARCH_AA64_DISASM_H
      3 
      4 /* AArch64 disassembler — ArchDisasm implementation.
      5  *
      6  * Wraps aa64_disasm_find + aa64_print_operands (src/arch/aa64/isa.{h,c}).
      7  * The dispatcher in src/arch/disasm.c constructs one of these when the
      8  * compiler target is KIT_ARCH_ARM_64. */
      9 
     10 #include "arch/arch.h"
     11 
     12 ArchDisasm* aa64_disasm_new(Compiler*);
     13 
     14 #endif