kernel: fix for #5350

git-svn-id: svn://kolibrios.org@6593 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Sergey Semyonov (Serge)
2016-10-14 17:51:58 +00:00
parent cd5d633704
commit 6cbd453d52
2 changed files with 8 additions and 10 deletions

View File

@@ -2944,22 +2944,20 @@ nosb8:
; edx = [top]*65536 + [bottom]
mov eax, [_display.width]
mov ebx, [_display.height]
dec eax
dec ebx
; check [right]
cmp cx, ax
ja .exit
jae .exit
; check [left]
ror ecx, 16
cmp cx, ax
ja .exit
jae .exit
; check [bottom]
cmp dx, bx
ja .exit
jae .exit
; check [top]
ror edx, 16
cmp dx, bx
ja .exit
jae .exit
movzx eax, cx ; [left]
movzx ebx, dx ; [top]