Welcome to my version of the classic Pong game implemented in Assembly 8086. This game will provide a nostalgic experience of the iconic pong game (when there aren't any major bugs). This game can be played single and as a duo.
- Singleplayer and multiplayer game modes
- Paddle controls
- Ball movement
- Score tracking for each player
- Game Over screen with winner announcement
- Player 1 (left paddle):
- Move up:
W
orw
- Move down:
S
ors
- Move up:
- Player 2 (right paddle):
- Move up:
O
oro
- Move down:
L
orl
- Move up:
- General:
- Exit game:
E
ore
- Main menu:
M
orm
- Exit game:
- DOSBox (DOS emulator)
- Install DOSBox on your system.
- Download this git repository to your local machine.
- Open DOSBox and mount the directory containing the game files.
mount C path/to/game/folder
Replace path/to/game/folder
with the actual path to the game files.
- Change to the mounted directory.
C:
- Inside DOSBox, navigate to the game directory.
cd src
- Compile the assembly file
masm.exe /a game.asm
- Link the object file
link game.obj
- Run the game
game.exe