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

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.

Awesome Lists containing this project

README

          

# Pong Game

![Pong Game Screenshot](https://github.com/imrun10/Pong-Game-8086-ASM/assets/126959659/0b635bd1-93e4-4ec6-82e0-bde4a7c68eba)

## 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