Changeset 146


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

Removed these obsolete functions [v1.1.1-testing]

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/bootcode/regular
Files:
2 edited

Legend:

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

    r143 r146  
    416416        ret
    417417DriveIO_SavePartition   EndP
    418 
    419 ; Keeps DS:SI for caller
    420 DriveIO_LoadTmpSector   Proc Near
    421         mov     si, offset TmpSector
    422         call    DriveIO_LoadSector
    423         ret
    424 DriveIO_LoadTmpSector   EndP
    425 
    426 ; Keeps DS:SI for caller
    427 DriveIO_SaveTmpSector   Proc Near
    428         mov     si, offset TmpSector
    429         call    DriveIO_SaveSector
    430         ret
    431 DriveIO_SaveTmpSector   EndP
    432418
    433419
  • trunk/bootcode/regular/partscan.asm

    r144 r146  
    418418
    419419
    420         ; Sets up DS:SI - TmpSector
    421         call    DriveIO_LoadTmpSector         ; Loads Boot record
    422 
    423 
     420        ; Load the partition sector
     421        mov     si, offset [TmpSector]
     422        call    DriveIO_LoadSector
    424423
    425424        push    si
Note: See TracChangeset for help on using the changeset viewer.