fixes, more stdlib functions (& stdlib binops), printf and etc. temporally disabled

This commit is contained in:
ProgramSnail 2025-04-07 00:46:02 +03:00
parent 43088ec9f9
commit 3834897b78
5 changed files with 76 additions and 16 deletions

View file

@ -454,7 +454,7 @@ void run_main(Bytefile* bf, int argc, char **argv) {
case CMD_CTRL_FAIL: { // FAIL %d %d
int line = ip_read_int(&s.ip);
int col = ip_read_int(&s.ip);
print_stack(&s);
print_stack(&s); // NOTE: debug info
Bmatch_failure(s_pop(), argv[0], BOX(line), BOX(col));
break;
}