Long Version of my Question:
Ello, I need some help with IJVM (the simplified JVM architecture from a guy named Tanenbaum).
I need to learn how to use it and so on for my ComputerArchitecture module, the lectures are really hard to listen to and there does not seem to be so much informationen about it in video form. This is why I played with JVM and noticed how it does some operations yada yada. Now, I want to see if there is a tool that would show each step of what the JVM does in real time. Like I hava the following code:
0: bipush 69
2: istore_0
3: bipush 12
5: istore_1
6: iload_0
7: iload_1
8: iadd
9: istore_2
10: iload_0
11: iload_1
12: imul
13: istore_3
14: iload_0
15: iload_1
16: idiv
17: istore 4
19: iload_0
20: iload_1
21: irem
22: istore 5
It would be very cool to see what the stack and so one does in real life to understand it better.