Changeset 129


Ignore:
Timestamp:
Apr 8, 2017, 12:27:28 AM (8 years ago)
Author:
Ben Rietbroek
Message:

Disabled 'CONV_CHS2LBA' function [v1.1.1-testing]

This one uses storage variables that are about to be removed.
It is not used anyway, so it will be disabled for now.

CAUTION:
This is a testbuild !
AirBoot uses the BIOS to access disks and a small coding error can trash
partition tables or other vital disk structures. You are advised to make
backups of TRACK0 and EBRs before using this testbuild. More info at:
https://rousseaux.github.io/netlabs.air-boot/pdf/AirBoot-v1.1.0-manual.pdf

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/bootcode/regular/conv.asm

    r87 r129  
    142142;              ZF=1 if upper 32-bits are zero (LBA32)
    143143; Destroyed:   none
     144IF 0
    144145CONV_CHS2LBA    Proc  Near
    145146        local   req_cyl:dword
     
    203204      ret
    204205CONV_CHS2LBA    EndP
    205 
     206ELSE
     207CONV_CHS2LBA    Proc  Near
     208        ret
     209CONV_CHS2LBA    EndP
     210ENDIF
    206211
    207212CONV_LBA2CYLS   Proc  Near
  • trunk/include/version.h

    r124 r129  
    3232#define     BLDLVL_YEAR             "2017"
    3333#define     BLDLVL_MONTH            "03"
    34 #define     BLDLVL_DAY              "28"
     34#define     BLDLVL_DAY              "31"
    3535// Build time
    3636//~ #define     BLDLVL_HOURS            "01"
  • trunk/include/version.inc

    r124 r129  
    7070AB_YEAR             EQU     2017h
    7171AB_MONTH            EQU     03h
    72 AB_DAY              EQU     28h
     72AB_DAY              EQU     31h
    7373
    7474; The Hours, Minutes and Seconds, again in BCD for easy manipulation.
Note: See TracChangeset for help on using the changeset viewer.