Files
pasm/tests/lib_use.c
ALittlePatate a97fde9f86 first commit of the recode
70% of the code was re-writter from scratch
2024-01-18 16:01:04 +01:00

12 lines
260 B
C

#include "../include/pasm.h"
int main(void) {
char output[1024] = {0};
FILE *memfile = fmemopen(output, sizeof(output), "w");
pasm_run_script("../examples/test.pasm", 0, 0, memfile);
fclose(memfile);
printf("%s", output);
return 0;
}