Hangman Game in ARM Assembly
Budget: £20 – £250 GBP
You have to write an ARM assembly program that allows a human to play of game of Hangman.The file must be .s .In this game, the player is attempting to guess a hidden word, one letter at a time. You are given a text file with 10 words for the game: • TESTS • CHALLENGE • UNIVERSITY • STUDENTS • BALANCE • FEEDBACK • BINARY • INTELLIGENCE • CARTOGRAPHERS • CHARACTERISTICALLY.
The player has six chances to guess the letters for each game. Valid inputs of the game are from A-Z or a-z (convert the letter into a capital if a small letter is input).
For each correct letter guessed, the letter is revealed at its correct location or locations in the word. For each incorrect letter guessed, an additional segment of the hangman is displayed.
The game is won when the entire word is guessed, whereas the game is lost when the entire hangman is displayed.
You should not allow the player to make an illegal move, or to enter invalid characters. For example, a player cannot guess the same letter twice, or enter a number (other than 0-2 depending on which functionality you attempt), or enter a non-printable character.
The player has six chances to guess the letters for each game. Valid inputs of the game are from A-Z or a-z (convert the letter into a capital if a small letter is input).
For each correct letter guessed, the letter is revealed at its correct location or locations in the word. For each incorrect letter guessed, an additional segment of the hangman is displayed.
The game is won when the entire word is guessed, whereas the game is lost when the entire hangman is displayed.
You should not allow the player to make an illegal move, or to enter invalid characters. For example, a player cannot guess the same letter twice, or enter a number (other than 0-2 depending on which functionality you attempt), or enter a non-printable character.