Ignore:
Timestamp:
Apr 15, 2013, 11:46:26 PM (12 years ago)
Author:
David Azarewicz
Message:

debugging updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/os2ahci/init.asm

    r153 r155  
    3434
    3535DEVHDR          SEGMENT WORD PUBLIC 'DATA'
    36 _dev_hdr        dd      _legacy_hdr             ; next device header
     36_dev_hdr        dd      _next_hdr               ; next device header
    3737                dw      DEVLEV_3 + DEV_CHAR_DEV + DEV_IDC ; flags for ADD drivers
    3838                dw      OFFSET _asm_strat       ; strategy routine
     
    4343                dw      0
    4444
     45if 1
    4546; This is here to support old SMART tools. This is a really bad thing to do as it will
    4647; cause problems in the future. The SMART tools should be fixed instead.
    47 _legacy_hdr     dd      -1                      ; no headers after this one
     48_next_hdr       dd      -1                      ; no headers after this one
    4849                dw      DEVLEV_3 + DEV_CHAR_DEV ; flags for ADD drivers
    4950                dw      OFFSET _asm_strat       ; strategy routine
     
    5354                dd      0
    5455                dw      0
     56else
     57_next_hdr       equ -1
     58endif
    5559
    5660DEVHDR          ENDS
Note: See TracChangeset for help on using the changeset viewer.