A simplified implementation of Tetris game written in TASM(Trubo Assembly).
First of all it's required to build objective file with the following command
tasm main.asm
After that it's required to perform linking operation with the following command:
tlink /n /v main.obj
Finally, the executable is ready and can be run with the following command:
main