https://github.com/ghulamghousdev/tic-tac-toe
This assembly program is supposed to run a simple TIC-TAC-TOE game in which different modes of play will be available such as player vs player or computer vs player.
https://github.com/ghulamghousdev/tic-tac-toe
Last synced: 10 months ago
JSON representation
This assembly program is supposed to run a simple TIC-TAC-TOE game in which different modes of play will be available such as player vs player or computer vs player.
- Host: GitHub
- URL: https://github.com/ghulamghousdev/tic-tac-toe
- Owner: ghulamghousdev
- Created: 2019-11-24T13:36:28.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-17T09:35:54.000Z (over 6 years ago)
- Last Synced: 2024-10-11T19:14:42.665Z (over 1 year ago)
- Language: Assembly
- Size: 36.1 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tic Tac Toe Game
## Project Declaration
In this project, we wrote an assembly program for Tic-tac-toe or Xs and Os is a paperand-pencil game for two players, X and O, who take turns marking the spaces in a 3×3 grid.
The player who succeeds in placing three respective marks in a horizontal, vertical, or
diagonal row wins the game.
## Project Description
It will be a 2 player game, Player 1 will take X and player 2 will take O . Initially the board
will be empty then player 1 will be instructed to enter the position of entry. Then the board
will be displayed after selection. After that, player 2 will be instructed to enter the position of
the O symbol and so on.
## Functionality
- Validation
- Display Game Board
- Update Game Board
- Print Instruction
- Check winner
- Test winner
- Show winner or draw
- Store score in file
- Add user vs computer and computer vs computer modes(optional)