As part of a school project (majoring in Computer Science and we learn assembly language for part of our grade, starting with 8086 right now) I have to make... something using what we've "learned" (our teacher gave us a list of commands and told us to teach ourselves, with his help obviously) until the end of the month.
So I made a "game" where you are this smiley guy and you gotta go through this maze, with stars as obstacles that bring you back to the starting point and '>' as the marker for next level.
The levels are just text that I print to the screen, each step comparing the next input with a wall/star/'>' thing and then if it's a star it resets your position, if it's a wall you stay in your place and if it's a '>' thingy then it prints the next level. It all works except the next part of next level.
Here's the Pastebin, with my problem detailed and pointed out.