Documentation

This commit is contained in:
WickedJack99
2022-05-06 23:21:59 +02:00
parent a6630fda2c
commit 561ca63754
3 changed files with 1 additions and 1 deletions

View File

@@ -25,7 +25,7 @@ public class Stack
{
stackpointer = 0;
//Initialize stack with -1 to decide wether the stack is empty or not, because 0 could be a return address.
stack = new int[]{-1, -1, -1, -1, -1, -1, -1, -1};
stack = new int[8];
}
/**