Skip to content

Commit

Permalink
v3.38
Browse files Browse the repository at this point in the history
  • Loading branch information
Baron-von-Riedesel committed Nov 21, 2022
1 parent ded8797 commit 90402ca
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
20 changes: 10 additions & 10 deletions HimemX.asm
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@

;--- assembly time parameters

VERSIONSTR equ <'3.37'>
DRIVER_VER equ 300h+37
VERSIONSTR equ <'3.38'>
DRIVER_VER equ 300h+38
INTERFACE_VER equ 300h

ifndef NUMHANDLES
Expand Down Expand Up @@ -2929,20 +2929,20 @@ _memicmp proc c uses si di psz1:word, psz2:word, len:word
ret
_memicmp endp

;--- _stdcall toupper(char) returns uppercase character
;--- toupper returns uppercase character of AL

_toupper proc
pop cx
pop ax
push cx
;--- v3.38: fixed, prototype is NOT "stdcall _toupper(char)"
; pop cx
; pop ax
; push cx
cmp al,'a'
jb @@I290
jb @F
cmp al,'z'
ja @@I290
ja @F
sub al,20h
@@I290:
@@:
ret

_toupper endp

;--- convert a string into a DWORD, returned in EAX
Expand Down
4 changes: 4 additions & 0 deletions History.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@

History

21.11.2022, v3.38:
- options /MAX and /HMAMIN did only work correctly with decimal numbers
and no suffix.

16.12.2020, v3.37:
- block move routine speed-up.
- return DX=0 if emb allocation fails (XMS spec).
Expand Down

0 comments on commit 90402ca

Please sign in to comment.