case-fix for YASM, for the DOS port

This commit is contained in:
ipher
2004-05-26 02:44:38 +00:00
parent 7572141905
commit 1b8952a616
2 changed files with 4 additions and 4 deletions

View File

@@ -2182,7 +2182,7 @@ NEWSYM handler9h
mov ax,[cs:dssel] mov ax,[cs:dssel]
mov ds,ax mov ds,ax
xor ebx,ebx xor ebx,ebx
in al,60H ; get keyboard scan code in al,60h ; get keyboard scan code
cmp al,42 cmp al,42
jne .no42 jne .no42
cmp byte[skipnextkey42],0 cmp byte[skipnextkey42],0
@@ -2228,8 +2228,8 @@ NEWSYM handler9h
mov ah,al mov ah,al
or al,80h or al,80h
out 61h,al out 61h,al
mov al,20H ; turn off interrupt mode mov al,20h ; turn off interrupt mode
out 20H,al out 20h,al
pop ebx ; Pop registers off pop ebx ; Pop registers off
pop eax ; stack in correct pop eax ; stack in correct
pop ds pop ds

View File

@@ -1175,7 +1175,7 @@ NEWSYM GUIhandler9h
mov ds,ax mov ds,ax
xor ebx,ebx xor ebx,ebx
in al,60H ; get keyboard scan code in al,60h ; get keyboard scan code
cmp al,42 cmp al,42
jne .no42 jne .no42
cmp byte[GUIskipnextkey42],0 cmp byte[GUIskipnextkey42],0