disasm_stubs.c (355B)
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 ArchDisasm* arm32_disasm_new(Compiler* c) { 19 (void)c; 20 return NULL; 21 } 22 23 const ArchDecodeOps rv64_decode_ops = {0};