From f927b5126ef7e219bc5d4aa875523df1f6ea6d83 Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Wed, 28 Sep 2022 11:32:11 -0400 Subject: Some basic asm generation around blocks --- tnslc/tnslc.tnsl | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'tnslc/tnslc.tnsl') diff --git a/tnslc/tnslc.tnsl b/tnslc/tnslc.tnsl index 2a19f20..76a10a3 100644 --- a/tnslc/tnslc.tnsl +++ b/tnslc/tnslc.tnsl @@ -24,12 +24,14 @@ /; main ({}{}charp args) [int] - /; if (len args < 2) - ;tnsl.io.println("Usage: tnslc [file in] [file out]") + /; if (len args < 1) + ;tnsl.io.println("Usage: tnslc [file in]") ;return 1 ;/ - ;tnsl.io.File src = tnsl.io.readFile(args{0}) + ;{}charp file = args{0} + + ;tnsl.io.File src = tnsl.io.readFile(file) ;~{}tnslc.Token psrc = tnslc.parse.tokenize(src) @@ -39,7 +41,9 @@ # ;tnslc.Node tree_node = tnslc.ast.make_tree(psrc, args{0}) - ;tnslc.do_compile(args{1}, psrc) + ;file.append('.') + ;file.append('S') + ;tnslc.do_compile(file, psrc) ;return 0 ;/ -- cgit v1.2.3