How to output a number over 9 in IJVM?

436 views Asked by At

i have searched a lot, but unsuccessful. Maybe you can help me, give some advice or source where i can find the answer. I can not understand how to output a number if it is more than 9 in IJVM architecture with MIC-1 simulator, I have a simple 2 number addition code.

.main
BIPUSH 0x35// PUSH 5
BIPUSH 0x33 // PUSH 3
IADD // PUSH sum(5,3)
DUP
BIPUSH 0x30 // PUSH 0
ISUB // subtract 0
OUT 
.end-main
0

There are 0 answers