An open API service indexing awesome lists of open source software.

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.

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)