kit

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

asm.h (234B)


      1 #ifndef KIT_ASM_H
      2 #define KIT_ASM_H
      3 
      4 #include "arch/mc.h"
      5 #include "asm/asm_lex.h"
      6 
      7 /* Standalone assembler. Reads tokens directly from an AsmLexer; emits via
      8  * MCEmitter. */
      9 void asm_parse(Compiler*, AsmLexer*, MCEmitter*);
     10 
     11 #endif