Diego Rodriguez schreef:
There is a small problem in DEVLOAD: in the umb routine there is a
version check and a comparison betwen 5 and AH contents, but the mayor
number is in AL not in AH (so it fails under PC DOS 5.0x and 7.0 and
works under 3.30)
Should be:
umb: ...
MOV AH, 30h
CMP AL, 5
...
There is a small problem in DEVLOAD: in the umb routine there is a
version check and a comparison betwen 5 and AH contents, but the mayor
number is in AL not in AH (so it fails under PC DOS 5.0x and 7.0 and
works under 3.30)
Should be:
umb: ...
MOV AH, 30h
CMP AL, 5
...