Re: Need Dos 3.3
Posted by
Matt Shaver
on 1999-12-14 18:31:41 UTC
> From: Bob Bachman <bobach@...>If you have a later version of dos and some program you're trying to run dies
>
> I know it sounds strange, but I need a copy of Dos 3.3.
> Anyone know a site where I might find it to download?
> I threw out my last copy of 3.3 about a year ago. That'll
> teach me to threw ANYTHING away.
with "Incorrect DOS Version", you can sometimes fool it into running by using
the SETVER program to change the version # that is returned when your program
calls the DOS function got "Get DOS Version". I think the official way to do
this involves an INT21 call with a function code in the A register. Another
possibility is to disassemble the program enough to find where this occurs
and patch it to reflect the version of DOS you have. This is really a bug
since later versions of DOS retain good backward compatibility and the
programmer should really have said:
IF DOS_VERSION > OR = 3.3 THEN CONTINUE
rather than
IF DOS_VERSION = 3.3 THEN CONTINUE
If you need the exact function call details let me know. Also, SETVER only
works if the program uses the "official" method of determining the DOS
version.
Matt
Discussion Thread
Bob Bachman
1999-12-14 20:34:27 UTC
Need Dos 3.3
Matt Shaver
1999-12-14 18:31:41 UTC
Re: Need Dos 3.3
Bob Bachman
1999-12-14 22:43:51 UTC
Re: Need Dos 3.3
Matt Shaver
1999-12-14 20:37:13 UTC
Re: Need Dos 3.3
Bob Bachman
1999-12-15 00:25:47 UTC
Re: Need Dos 3.3
Chris Paine
1999-12-26 15:23:54 UTC
Re: Need Dos 3.3