mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Changes in v1.6.2 (7/28/2002) (brianp)
- Fix for GetFatEntry16 bug (fathelp.asm) by Mike Lerwill svn path=/trunk/; revision=3306
This commit is contained in:
parent
8e93e09163
commit
410b3629c3
3 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Changes in v1.6.2 (7/28/2002) (brianp)
|
||||||
|
|
||||||
|
- Fix for GetFatEntry16 bug (fathelp.asm) by Mike Lerwill
|
||||||
|
|
||||||
Changes in v1.6.1 (7/22/2002) (brianp)
|
Changes in v1.6.1 (7/22/2002) (brianp)
|
||||||
|
|
||||||
- Fix for disk caching while doing drive remapping
|
- Fix for disk caching while doing drive remapping
|
||||||
|
|
|
@ -146,7 +146,7 @@ GetFatEntry16:
|
||||||
|
|
||||||
mov cx,2 ; AX = AX * 2 (since FAT16 entries are 2 bytes)
|
mov cx,2 ; AX = AX * 2 (since FAT16 entries are 2 bytes)
|
||||||
mul cx
|
mul cx
|
||||||
shl dx,0fh
|
shl dx,12
|
||||||
|
|
||||||
mov bx,7000h
|
mov bx,7000h
|
||||||
add bx,dx
|
add bx,dx
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
|
|
||||||
/* just some stuff */
|
/* just some stuff */
|
||||||
#define VERSION "FreeLoader v1.6.1"
|
#define VERSION "FreeLoader v1.6.2"
|
||||||
#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 6
|
#define FREELOADER_MINOR_VERSION 6
|
||||||
#define FREELOADER_PATCH_VERSION 1
|
#define FREELOADER_PATCH_VERSION 2
|
||||||
|
|
||||||
|
|
||||||
PUCHAR GetFreeLoaderVersionString(VOID);
|
PUCHAR GetFreeLoaderVersionString(VOID);
|
||||||
|
|
Loading…
Reference in a new issue