Changes in v1.7.9 (9/30/2002) (brianp)

- Fix for bug in BiosInt13ReadExtended() (biosdisk.S)
  by Christophe Bothamy & Mike Lerwill

svn path=/trunk/; revision=3589
This commit is contained in:
Brian Palmer 2002-09-30 23:30:32 +00:00
parent 7b7130b9ca
commit 784dc1a198
3 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
Changes in v1.7.9 (9/30/2002) (brianp)
- Fix for bug in BiosInt13ReadExtended() (biosdisk.S)
by Christophe Bothamy & Mike Lerwill
Changes in v1.7.8 (9/7/2002) (ekohl)
- Added new 'bootcd' target.

View file

@ -182,7 +182,7 @@ EXTERN(_BiosInt13ReadExtended)
movl 0x30(%esp),%eax // Get buffer address in eax
shrl $4,%eax // Make linear address into segment
movw %ax,_packet_transfer_buffer_segment // Save segment
movl 0x34(%esp),%eax // Get buffer address in eax
movl 0x30(%esp),%eax // Get buffer address in eax
andl $0x0f,%eax // Make linear address into offset
movw %ax,_packet_transfer_buffer_offset // Save offset

View file

@ -22,7 +22,7 @@
/* just some stuff */
#define VERSION "FreeLoader v1.7.8"
#define VERSION "FreeLoader v1.7.9"
#define COPYRIGHT "Copyright (C) 1998-2002 Brian Palmer <brianp@sginet.com>"
#define AUTHOR_EMAIL "<brianp@sginet.com>"
#define BY_AUTHOR "by Brian Palmer"
@ -36,7 +36,7 @@
//
#define FREELOADER_MAJOR_VERSION 1
#define FREELOADER_MINOR_VERSION 7
#define FREELOADER_PATCH_VERSION 8
#define FREELOADER_PATCH_VERSION 9
PUCHAR GetFreeLoaderVersionString(VOID);