Skip to content

Commit

Permalink
Added MarsSV0_8.jar and create-jar.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
gzachos committed Oct 21, 2018
1 parent 8da08cf commit 0415e1a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
Binary file added MarsSV0_8.jar
Binary file not shown.
16 changes: 16 additions & 0 deletions create-jar.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env bash

NAME="$1"

if [ -z "${NAME}" ]
then
echo "USAGE: ./create-jar.sh JARNAME[.jar]"
exit 1
fi

if [ "${NAME:(-4)}" != ".jar" ]
then
NAME="${NAME}.jar"
fi

jar cmf mainclass.txt ${NAME} PseudoOps.txt Config.properties Syscall.properties Settings.properties MARSlicense.txt mainclass.txt MipsXRayOpcode.xml registerDatapath.xml controlDatapath.xml ALUcontrolDatapath.xml CreateMarsJar.bat Mars.java Mars.class docs help images mars
4 changes: 2 additions & 2 deletions mars/tools/StackVisualizer.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@
public class StackVisualizer extends AbstractMarsToolAndApplication {

private static String name = "Stack Visualizer";
private static String versionID = "0.2";
private static String versionID = "0.8";
private static String version = "Version " + versionID + " (George Z. Zachos, Petros Manousis)";
private static String heading = "Visualizing Stack Modification Operations";
private static String releaseDate = "28-Sep-2018";
private static String releaseDate = "22-Oct-2018";

private static boolean displayDataPerByte = false;

Expand Down

0 comments on commit 0415e1a

Please sign in to comment.