kit

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

disasm_stubs.c (282B)


      1 #include "arch/arch.h"
      2 
      3 ArchDisasm* aa64_disasm_new(Compiler* c) {
      4   (void)c;
      5   return NULL;
      6 }
      7 
      8 ArchDisasm* x64_disasm_new(Compiler* c) {
      9   (void)c;
     10   return NULL;
     11 }
     12 
     13 ArchDisasm* rv64_disasm_new(Compiler* c) {
     14   (void)c;
     15   return NULL;
     16 }
     17 
     18 const ArchDecodeOps rv64_decode_ops = {0};