I want to build a tetris game in assembly (tasm) and I want the cubes to go left/right according to what I press on the keyboard. I used this code:
mov ah, 00h
int 16h ;al=ascii charachter
but it waits for the keyboard press and I want it to keep going on and only if I press < or > it'll change, what can I write instead of this?