I need to check whether the insert key, num lock, and the left shift and right shift keys were pressed. I do this:
push ax mov ah, 02h int 16h test al, 10000000b jnz exit2 pop ax and respectively for the rest: test al, 00100000b, test al, 00000010b, test al, 00000001b
but all this does not work (((