mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
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:
parent
7b7130b9ca
commit
784dc1a198
3 changed files with 8 additions and 3 deletions
|
@ -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)
|
Changes in v1.7.8 (9/7/2002) (ekohl)
|
||||||
|
|
||||||
- Added new 'bootcd' target.
|
- Added new 'bootcd' target.
|
||||||
|
|
|
@ -182,7 +182,7 @@ EXTERN(_BiosInt13ReadExtended)
|
||||||
movl 0x30(%esp),%eax // Get buffer address in eax
|
movl 0x30(%esp),%eax // Get buffer address in eax
|
||||||
shrl $4,%eax // Make linear address into segment
|
shrl $4,%eax // Make linear address into segment
|
||||||
movw %ax,_packet_transfer_buffer_segment // Save 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
|
andl $0x0f,%eax // Make linear address into offset
|
||||||
movw %ax,_packet_transfer_buffer_offset // Save offset
|
movw %ax,_packet_transfer_buffer_offset // Save offset
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
/* just some stuff */
|
/* 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 COPYRIGHT "Copyright (C) 1998-2002 Brian Palmer <brianp@sginet.com>"
|
||||||
#define AUTHOR_EMAIL "<brianp@sginet.com>"
|
#define AUTHOR_EMAIL "<brianp@sginet.com>"
|
||||||
#define BY_AUTHOR "by Brian Palmer"
|
#define BY_AUTHOR "by Brian Palmer"
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
//
|
//
|
||||||
#define FREELOADER_MAJOR_VERSION 1
|
#define FREELOADER_MAJOR_VERSION 1
|
||||||
#define FREELOADER_MINOR_VERSION 7
|
#define FREELOADER_MINOR_VERSION 7
|
||||||
#define FREELOADER_PATCH_VERSION 8
|
#define FREELOADER_PATCH_VERSION 9
|
||||||
|
|
||||||
|
|
||||||
PUCHAR GetFreeLoaderVersionString(VOID);
|
PUCHAR GetFreeLoaderVersionString(VOID);
|
||||||
|
|
Loading…
Reference in a new issue