21 lines
374 B
C
21 lines
374 B
C
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <ctype.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <stdarg.h>
|
|
#include "base.c"
|
|
#include "meta_gen.c"
|
|
#include "lex.c"
|
|
#include "parser.c"
|
|
#include "emit_asm_x64.c"
|
|
|
|
int main() {
|
|
lex_init_keywords();
|
|
vec_test();
|
|
lex_test();
|
|
parser_test();
|
|
emit_x64_test();
|
|
} |