comment ~ ***************** Name: SSN: Section:
Date: Assignment: Description: Input: Output: ~ ***************** .model small .586 .stack 100h .nolist ;************************************************* ;Includes ;************************************************* include bios.inc include consts.inc .list .data .code main proc .startup @Cls @Setcsrpos,0,0 ;initialize everything @@: ;get user input ;update paddle ;update ball ;draw the screen ;check if all bricks are gone, if so then quit jmp @b done: @Cls @Setcsrpos,0,0 .exit main endp end