From d3a0cc3a8ba6dfeb64d3faeffdeb6845b60e5840 Mon Sep 17 00:00:00 2001 From: Yuchen Pei Date: Sat, 20 Jan 2018 15:41:49 +0100 Subject: rearranged the dir for github - removed tools and pdfs - rearranged the projects dirs - added md files - other minor changes --- tools/Assembler.bat | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 tools/Assembler.bat (limited to 'tools/Assembler.bat') diff --git a/tools/Assembler.bat b/tools/Assembler.bat deleted file mode 100644 index 93260ec..0000000 --- a/tools/Assembler.bat +++ /dev/null @@ -1,27 +0,0 @@ -@echo off - -rem $Id: Assembler.bat,v 1.2 2014/05/10 00:52:43 marka Exp $ -rem mark.armbrust@pobox.com - -setlocal -if not "%2"=="" goto :USAGE -if "%~1"=="/?" ( -:USAGE - echo Usage: - echo Assembler Starts the assembler in interactive mode. - echo Assembler FILE[.asm] Assembles FILE.asm to FILE.hack. - 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/Compilers.jar;bin/lib/AssemblerGUI.jar;bin/lib/TranslatorsGUI.jar" ^ - HackAssemblerMain -) else ( - echo Assembling "%_arg1%" - java -classpath "%CLASSPATH%;bin/classes;bin/lib/Hack.jar;bin/lib/HackGUI.jar;bin/lib/Compilers.jar;bin/lib/AssemblerGUI.jar;bin/lib/TranslatorsGUI.jar" ^ - HackAssemblerMain "%_arg1%" -) -popd -- cgit v1.2.3