From 035ac36b876fc0389b745c5f8888d88ac5e80065 Mon Sep 17 00:00:00 2001 From: "George Z. Zachos" Date: Wed, 24 Oct 2018 23:56:14 +0300 Subject: [PATCH] Updated INITIAL_ROW_COUNT --- mars/tools/StackVisualizer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mars/tools/StackVisualizer.java b/mars/tools/StackVisualizer.java index f5731bb..a5bb3be 100644 --- a/mars/tools/StackVisualizer.java +++ b/mars/tools/StackVisualizer.java @@ -75,7 +75,7 @@ public class StackVisualizer extends AbstractMarsToolAndApplication { private static final int I_RS_OPERAND_LIST_INDEX = 0; // I-format RS (source register) index private static final int J_ADDR_OPERAND_LIST_INDEX = 0; // J-format Address index private static final int R_RS_OPERAND_LIST_INDEX = 0; // R-format RS (source register) index - private static final int INITIAL_ROW_COUNT = 24; + private static final int INITIAL_ROW_COUNT = 30; private static final int INITIAL_MAX_SP_VALUE = SP_INIT_ADDR + 3; private static final int maxSpValue = INITIAL_MAX_SP_VALUE; private static int maxSpValueWordAligned = SP_INIT_ADDR;