233k views
4 votes
15 14 13 12

11 10 _ 9
7 6 4 8
3 1 5 2

implement a 15 slide puzzle in MIPS (Assembly Language) using Mars(Platform) for movement use a,w,d,s to move a tile and q to quit the game. shuffle the 2d array for a player to solve

User Eran Shabi
by
7.7k points

1 Answer

4 votes

Final answer:

To implement a 15-slide puzzle in MIPS Assembly Language using Mars platform, follow these steps: initialize the array, shuffle it, display the puzzle, accept user inputs for movement, update the puzzle, continue until solved or quit, display result.

Step-by-step explanation:

To implement a 15-slide puzzle in MIPS Assembly Language using Mars platform, you can follow these steps:

  1. Initialize a 2D array of size 4x4 with the numbers 1 to 15 and a blank space.
  2. Shuffle the array to create a random starting configuration for the puzzle.
  3. Display the initial puzzle configuration.
  4. Implement a loop to accept user inputs for movement (a, w, d, s) and q to quit the game.
  5. Based on the user's input, move the blank space in the specified direction (if it is a valid move).
  6. Display the updated puzzle configuration after each move.
  7. Continue accepting user inputs and updating the puzzle until the game is solved or the user quits.
  8. Display a message indicating whether the game is solved or the user quit.

By following these steps, you can create a functional 15-slide puzzle game in MIPS Assembly Language using the Mars platform.

User Rubbal
by
7.6k points