home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR13 / DOS32V12.ZIP / VERSION.TXT < prev   
Text File  |  1993-10-17  |  790b  |  27 lines

  1. Changes to the new Version 1.2 of DOS32 to the old Version 1.0.
  2.  
  3. 1)    A new descriptor is avalible for the PROGRAM  ENVIRONMENT 
  4.       LIMIT = 100h, BASE = environment segment.
  5.  
  6. 2)  386 CPU detection. 
  7.  
  8.  
  9. 3)  There is no more seperate data and code segments.
  10. The base address of the data and code descriptors both point 
  11. to your program segment.
  12.  
  13.  
  14. 4) The way in which the V86 mode segment registers are passed 
  15. to/from protected mode is no longer done through the first 
  16. few locations of the stack segment. The new version uses
  17. labes in your program segment.
  18.  
  19.  instead of doing 
  20.     mov    SS:REAL_DS, 1234h
  21.  
  22.  now just 
  23.     mov    REAL_DS, 1234h
  24.  
  25. Because this dosn't rely on the stack there is no restriction 
  26. to where the stack is located. This was not the case in Version 1.0
  27.