aboutsummaryrefslogtreecommitdiff
path: root/tools/VMEmulator.bat
diff options
context:
space:
mode:
authorYuchen Pei <me@ypei.me>2018-01-20 15:41:49 +0100
committerYuchen Pei <me@ypei.me>2018-01-20 15:41:49 +0100
commitd3a0cc3a8ba6dfeb64d3faeffdeb6845b60e5840 (patch)
treed58df9ec2480e2a9ec6240f9c797f83d1a0b1056 /tools/VMEmulator.bat
parent3571f998b28fbc8d9250ba04c983935f10a16c15 (diff)
rearranged the dir for github
- removed tools and pdfs - rearranged the projects dirs - added md files - other minor changes
Diffstat (limited to 'tools/VMEmulator.bat')
-rw-r--r--tools/VMEmulator.bat29
1 files changed, 0 insertions, 29 deletions
diff --git a/tools/VMEmulator.bat b/tools/VMEmulator.bat
deleted file mode 100644
index 1b15b72..0000000
--- a/tools/VMEmulator.bat
+++ /dev/null
@@ -1,29 +0,0 @@
-@echo off
-
-rem $Id: VMEmulator.bat,v 1.3 2014/05/10 00:51:55 marka Exp $
-rem mark.armbrust@pobox.com
-
-setlocal
-if not "%2"=="" goto :USAGE
-if "%~1"=="/?" (
-:USAGE
- echo Usage:
- echo VMEmulator Starts the VM Emulator in interactive mode.
- echo VMEmulator FILE.tst Starts the VM Emulator and runs the FILE.tst test
- echo script. The success/failure message is
- echo printed to the command console.
- exit -b
-)
-if not "%~1"=="" (
- set "_arg1=%~f1"
-)
-pushd "%~dp0"
-if "%~1"=="" (
- start javaw -classpath "%CLASSPATH%;.;bin/classes;bin/lib/Hack.jar;bin/lib/HackGUI.jar;bin/lib/Simulators.jar;bin/lib/SimulatorsGUI.jar;bin/lib/Compilers.jar" ^
- VMEmulatorMain
-) else (
-rem echo Running "%_arg1%"
- java -classpath "%CLASSPATH%;.;bin/classes;bin/lib/Hack.jar;bin/lib/HackGUI.jar;bin/lib/Simulators.jar;bin/lib/SimulatorsGUI.jar;bin/lib/Compilers.jar" ^
- VMEmulatorMain "%_arg1%"
-)
-popd