Ignore:
Timestamp:
Mar 15, 2013, 1:38:58 AM (11 years ago)
Author:
krille_n_@…
google:author:
krille_n_@hotmail.com
Message:

Changes:

  • Update of the copyright notices to include the year 2013.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Menupages/MasterSlaveMenu.asm

    r425 r526  
    33
    44;
    5 ; XTIDE Universal BIOS and Associated Tools 
    6 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team.
     5; XTIDE Universal BIOS and Associated Tools
     6; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team.
    77;
    88; This program is free software; you can redistribute it and/or modify
     
    1010; the Free Software Foundation; either version 2 of the License, or
    1111; (at your option) any later version.
    12 ; 
     12;
    1313; This program is distributed in the hope that it will be useful,
    1414; but WITHOUT ANY WARRANTY; without even the implied warranty of
    1515; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    16 ; GNU General Public License for more details.     
     16; GNU General Public License for more details.
    1717; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
    18 ;       
     18;
    1919
    2020; Section containing initialized data
     
    105105    at  MENUITEM.itemValue + ITEM_VALUE.rgszValueToStringLookup,    dw  g_rgszValueToStringLookupForFlagBooleans
    106106    at  MENUITEM.itemValue + ITEM_VALUE.wValueBitmask,              dw  FLG_DRVPARAMS_USERCHS
    107     at  MENUITEM.itemValue + ITEM_VALUE.fnValueWriter,              dw  MasterSlaveMenu_WriteCHSFlag       
     107    at  MENUITEM.itemValue + ITEM_VALUE.fnValueWriter,              dw  MasterSlaveMenu_WriteCHSFlag
    108108iend
    109109
     
    137137    at  MENUITEM.itemValue + ITEM_VALUE.wMinValue,                  dw  1
    138138    at  MENUITEM.itemValue + ITEM_VALUE.wMaxValue,                  dw  MAX_USER_HEADS
    139 %define                 MASTERSLAVE_HEADS_DEFAULT                       MAX_USER_HEADS     
     139%define                 MASTERSLAVE_HEADS_DEFAULT                       MAX_USER_HEADS
    140140iend
    141141
     
    170170    at  MENUITEM.itemValue + ITEM_VALUE.rgszValueToStringLookup,    dw  g_rgszValueToStringLookupForFlagBooleans
    171171    at  MENUITEM.itemValue + ITEM_VALUE.wValueBitmask,              dw  FLG_DRVPARAMS_USERLBA
    172     at  MENUITEM.itemValue + ITEM_VALUE.fnValueWriter,              dw  MasterSlaveMenu_WriteLBAFlag               
     172    at  MENUITEM.itemValue + ITEM_VALUE.fnValueWriter,              dw  MasterSlaveMenu_WriteLBAFlag
    173173iend
    174174
     
    443443; changing in/out of user CHS settings (since we use these bytes in different ways with the LBA setting).
    444444;
    445 ALIGN JUMP_ALIGN       
     445ALIGN JUMP_ALIGN
    446446MasterSlaveMenu_WriteCHSFlag:
    447447        test    word [es:di], FLG_DRVPARAMS_USERCHS
     
    455455        mov     si, g_MenuitemMasterSlaveCylinders
    456456        call    Menuitem_StoreValueFromAXtoMenuitemInDSSI
    457        
    458         mov     ax, MASTERSLAVE_HEADS_DEFAULT       
     457
     458        mov     ax, MASTERSLAVE_HEADS_DEFAULT
    459459        mov     si, g_MenuitemMasterSlaveHeads
    460         call    Menuitem_StoreValueFromAXtoMenuitemInDSSI       
    461 
    462         mov     ax, MASTERSLAVE_SECTORS_DEFAULT                     
     460        call    Menuitem_StoreValueFromAXtoMenuitemInDSSI
     461
     462        mov     ax, MASTERSLAVE_SECTORS_DEFAULT
    463463        mov     si, g_MenuitemMasterSlaveSectors
    464         call    Menuitem_StoreValueFromAXtoMenuitemInDSSI       
    465        
    466         pop     si                     
     464        call    Menuitem_StoreValueFromAXtoMenuitemInDSSI
     465
     466        pop     si
    467467        pop     di
    468468        pop     ax
     
    475475; changing in/out of user LBA settings (since we use these bytes in different ways with the CHS setting).
    476476;
    477 ALIGN JUMP_ALIGN                       
     477ALIGN JUMP_ALIGN
    478478MasterSlaveMenu_WriteLBAFlag:
    479479        test    word [es:di], FLG_DRVPARAMS_USERLBA
     
    486486        mov     ax, MASTERSLAVE_USERLBA_DEFAULT
    487487        mov     si, g_MenuitemMasterSlaveUserLbaValue
    488         call    Menuitem_StoreValueFromAXtoMenuitemInDSSI               
     488        call    Menuitem_StoreValueFromAXtoMenuitemInDSSI
    489489
    490490        pop     si
    491491        pop     di
    492492        pop     ax
    493                        
     493
    494494.alreadySet:
    495         ret     
     495        ret
Note: See TracChangeset for help on using the changeset viewer.