eltorito.txt 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. Change log for eltorito.asm, by Bart Lagerweij
  2. Jun 25, 2009 - License source code under the MIT license
  3. Jun 6, 2002 - v1.2
  4. Eltorito.sys does now also finds the correct driver number for the booted CD-Rom
  5. on a Dell PC with very buggy BIOS. It does not clear the carry flag after a
  6. succesfull call to int13/ax=4b01h call. Other PC's also using Phoenix BIOS
  7. version 1.10 A14, or alike maybe also benefit from this "workaround".
  8. Mar 9, 2002
  9. - All read requests are now retried 5 times.
  10. - Bug fix, had...
  11. cmp ax, 3FFFh ;Too large?
  12. ja ReadLBad ;If yes
  13. seperated from...
  14. mov ax,es:[bx+18] ;Get number of sectors to read
  15. mov word ptr [SpecPkt+2],ax
  16. so, it was checking "wild" ax values...
  17. - Some cleanup and small changes
  18. - The tracers give trouble when using SHCD..
  19. - Reverted proc ReadL back to Rev. 0.15BETA
  20. Mar 5, 2002
  21. - Bug fix, when changing CD media some machines would "hang" in the PriVolDesc
  22. routine.
  23. - Added printing of TRACER characters to trace the bug above
  24. - Major cleanup and now using ASCIIZ strings
  25. May 9, 2001
  26. - Fixed a "pad devicename with spaces" bug, this only happened when a device
  27. name was used with less than 8 characters, for example, "MSCD000" became
  28. "MSCD000("
  29. - Bug fix, when eltorito.sys was called with invalid command line parameters,
  30. garbage was printed and sometimes followed by "system halted" that has been
  31. there since the very first version of eltorito.sys. I know that because I
  32. had the bug back then. When loading eltorito.sys using a device loader,
  33. for example "device.com eltorito.sys /test:123" garbage was printed instead
  34. of "No device name found." "driver not installed".
  35. Changed the error message to include a "usage" string.
  36. May 8, 2001
  37. - If diskemu.bin is loaded eltorito.sys uses the drivenumber from diskemu
  38. A call is made to "diskemu/Get status" (INT13/AX=5400) and the drivenumber is returned in CL
  39. This should fix boot problems on Dell PCs (YES!)
  40. When diskemu.bin is not loaded, eltorito still loops all drive numbers using eltorito calls.
  41. - Removed "press Escape..."
  42. - When the Alt-key is pressed (and holded) more info is printed and eltorito.sys halts