https://github.com/imrun10/pong-game-8086-asm
This is a simple implementation of the classic Pong game using 8086 Assembly for the Microprocessors (CMPE 475) class project at AUBH in Spring 2024.
https://github.com/imrun10/pong-game-8086-asm
8086-microprocessor assembly-x86 pong-game
Last synced: 4 months ago
JSON representation
This is a simple implementation of the classic Pong game using 8086 Assembly for the Microprocessors (CMPE 475) class project at AUBH in Spring 2024.
- Host: GitHub
- URL: https://github.com/imrun10/pong-game-8086-asm
- Owner: imrun10
- Created: 2024-04-14T10:09:26.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-04T17:01:46.000Z (over 1 year ago)
- Last Synced: 2026-02-05T14:50:44.967Z (4 months ago)
- Topics: 8086-microprocessor, assembly-x86, pong-game
- Language: Assembly
- Homepage:
- Size: 514 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pong Game

## Description
This is a simple implementation of the classic Pong game using 8086 Assembly for the Microprocessors (CMPE 475) class project at AUBH in Spring 2024. The game involves two paddles and a ball, and the goal is to bounce the ball off the paddles and prevent it from going past your paddle. The game is played in a two-player mode, where each player controls a paddle using w and s for P1 and O and L for P2.
## Installation
1. Download the repository.
2. Download DOSbox.
3. Open DOSbox.
```bash
mount c c:\your\directory\path
c:
masm /a pong.asm
;
link pong
;
pong
```
4. Enjoy