Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 824 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 824 Bytes

Tetris Tasm

A Tetris Game done in Assembly for the x86 architecture. Work in Progress.

To be done:

  • Make pieces rotate
  • Add collision detection
  • Make pieces fall directly when pressing arrow-down key

Build and Run

This game is built with TASM. Click here for a tutorial to run TASM on DosBox. Then, place the tetris.asm file in the folder where you can run TASM command and follow the procedure below.

tasm tetris.asm
# This will assemble the code into an obj file.

tlink tetris
# Takes the obj file created above and combines into an executable

tetris
# It will run the game

Game Screens

Playing

Game Over