From f3a773c750181f8f3d52fd672587814275a04bd7 Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Mon, 25 Mar 2024 22:39:06 -0400 Subject: Remove old parser files --- tnslc/tnslc_wrapped.tnsl | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 tnslc/tnslc_wrapped.tnsl (limited to 'tnslc/tnslc_wrapped.tnsl') diff --git a/tnslc/tnslc_wrapped.tnsl b/tnslc/tnslc_wrapped.tnsl deleted file mode 100644 index 3e73778..0000000 --- a/tnslc/tnslc_wrapped.tnsl +++ /dev/null @@ -1,30 +0,0 @@ -:include "c_wrap_linux.tnsl" -:include "logging.tnsl" -:include "utils.tnsl" -:include "vector.tnsl" -:include "tokenizer.tnsl" -:include "compiler_structs.tnsl" -:include "compiler.tnsl" - -{}uint8 w_usage = "Usage: tnslc [file to compile] [file to write]" - -/; main (int argc, ~~uint8 argv) [int] - asm "mov r8, rdi" - asm "mov r9, rsi" - - /; if (argc < 3) - _printf(~w_usage{0}) - reutrn 1 - ;/ - - Path in, out - in.start(argv{1}) - out.start(argv{2}) - - compile(in, out) - - in._del() - out._del() - - return 0 -;/ -- cgit v1.2.3