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