diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2024-03-25 22:39:06 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2024-03-25 22:39:06 -0400 |
commit | f3a773c750181f8f3d52fd672587814275a04bd7 (patch) | |
tree | 8c37ae892960f0988aa6006661beef4ff8b8e8e5 /tnslc/run.ps1 | |
parent | 0bc05b40d541483d16445b98ea0841d1912a8198 (diff) |
Remove old parser files
Diffstat (limited to 'tnslc/run.ps1')
-rw-r--r-- | tnslc/run.ps1 | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tnslc/run.ps1 b/tnslc/run.ps1 deleted file mode 100644 index b820fb4..0000000 --- a/tnslc/run.ps1 +++ /dev/null @@ -1,11 +0,0 @@ -if ($args.Length -gt 0) { - ..\tint.exe -flags "$args" -in tnslc.tnsl - mkdir -Force build - mkdir -Force build/artifacts - mv -Force "$($args[0]).asm" "build/artifacts/$($args[0]).asm" - nasm -f win64 -o "build/artifacts/$($args[0]).obj" "build/artifacts/$($args[0]).asm" - gcc -o "build/$($args[0]).exe" "build/artifacts/$($args[0]).obj" -} else { - Write-Host "Usage: run [file to compile]"; - Write-Host ""; -} |