implemented roll up

This commit is contained in:
Mirko Scholz 2020-09-10 16:42:32 +02:00
parent 9deae8128d
commit 370df33a6c

View File

@ -238,6 +238,8 @@ void process_cmd(char cmd){
case '4':{ case '4':{
if (IsShiftedUp){ //roll down if (IsShiftedUp){ //roll down
StackPtr++; StackPtr++;
} else if (IsShiftedDown){ //roll up
StackPtr--;
} }
} break; } break;
////////// //////////