Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 258 Bytes

File metadata and controls

22 lines (15 loc) · 258 Bytes

Reading Input

Back{: .button}

Check for escape

in  al, 60h
dec ax        ; if Esc ax become zero
jnz mainloop

Check for any input

in  al, 60h
das           ;  parity flag is set if non-zero
jp  mainloop