From 65793a7933de5da3c4c63bd69d32abe121f7ea30 Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Sun, 5 Mar 2023 16:01:33 -0500 Subject: Get more basic code gen working + bitwise and, or, xor + negate values + fix basic variable setting + fix windows based line endings --- tnslc/run.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tnslc/run.ps1') diff --git a/tnslc/run.ps1 b/tnslc/run.ps1 index 15b78f3..620673d 100644 --- a/tnslc/run.ps1 +++ b/tnslc/run.ps1 @@ -1,5 +1,5 @@ if ($args.Length -gt 0) { - ..\tint.exe -flags """$args""" -in tnslc.tnsl + ..\tint.exe -flags "$args" -in tnslc.tnsl nasm -f win64 -o "$($args[0]).obj" "$($args[0]).asm" gcc -o "$($args[0]).exe" "$($args[0]).obj" } else { -- cgit v1.2.3