Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 736 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 736 Bytes

Pong Game

Pong Game Screenshot

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.
mount c c:\your\directory\path
c:
masm /a pong.asm
;
link pong
;
pong
  1. Enjoy