summaryrefslogtreecommitdiff
path: root/pkgs/Windows/startasem.bat
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/Windows/startasem.bat')
-rw-r--r--pkgs/Windows/startasem.bat17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/Windows/startasem.bat b/pkgs/Windows/startasem.bat
new file mode 100644
index 0000000..285044f
--- /dev/null
+++ b/pkgs/Windows/startasem.bat
@@ -0,0 +1,17 @@
+@echo off
+
+rem DESCRIPTION:
+rem Run ASEM-51 assembler from the IDE silently, i.e. without showing any additional windows.
+
+SETLOCAL ENABLEEXTENSIONS
+cd %1
+SHIFT
+
+:Loop
+IF "%1"=="" GOTO Continue
+SET args=%args% %1
+SHIFT
+GOTO Loop
+:Continue
+
+asem %args%