kit

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

x64.h (265B)


      1 #ifndef KIT_ARCH_X64_H
      2 #define KIT_ARCH_X64_H
      3 
      4 #include "arch/mc.h"
      5 #include "arch/native_target.h"
      6 
      7 typedef struct NativeOps NativeOps;
      8 
      9 NativeTarget* x64_native_target_new(Compiler*, ObjBuilder*, MCEmitter*);
     10 const NativeOps* x64_native_direct_ops(void);
     11 
     12 #endif