Ignore:
Timestamp:
Feb 18, 2011, 2:50:16 PM (13 years ago)
Author:
krille_n_@…
google:author:
krille_n_@hotmail.com
Message:

Fixed a spelling mistake and cleaned the source some. No changes to the actual code.

File:
1 edited

Legend:

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

    r59 r108  
    1 ; File name     :   IdeControllerMenu.asm
    21; Project name  :   XTIDE Universal BIOS Configurator v2
    3 ; Created date  :   2.11.2010
    4 ; Last update   :   18.11.2010
    5 ; Author        :   Tomi Tilli
    62; Description   :   "IDE Controller" menu structs and functions.
    73
     
    4945g_MenuitemIdeControllerBusType:
    5046istruc MENUITEM
    51     at  MENUITEM.fnActivate,        dw  Menuitem_ActivateMultichoiseSelectionForMenuitemInDSSI
     47    at  MENUITEM.fnActivate,        dw  Menuitem_ActivateMultichoiceSelectionForMenuitemInDSSI
    5248    at  MENUITEM.fnFormatValue,     dw  MenuitemPrint_WriteLookupValueStringToBufferInESDIfromShiftedItemInDSSI
    5349    at  MENUITEM.szName,            dw  g_szItemIdeBusType
     
    5551    at  MENUITEM.szHelp,            dw  g_szNfoIdeBusType
    5652    at  MENUITEM.bFlags,            db  FLG_MENUITEM_VISIBLE | FLG_MENUITEM_BYTEVALUE
    57     at  MENUITEM.bType,             db  TYPE_MENUITEM_MULTICHOISE
     53    at  MENUITEM.bType,             db  TYPE_MENUITEM_MULTICHOICE
    5854    at  MENUITEM.itemValue + ITEM_VALUE.wRomvarsValueOffset,        dw  NULL
    5955    at  MENUITEM.itemValue + ITEM_VALUE.szDialogTitle,              dw  g_szDlgBusType
    60     at  MENUITEM.itemValue + ITEM_VALUE.szMultichoise,              dw  g_szMultichoiseCfgBusType
    61     at  MENUITEM.itemValue + ITEM_VALUE.rgwChoiseToValueLookup,     dw  g_rgwChoiseToValueLookupForBusType
     56    at  MENUITEM.itemValue + ITEM_VALUE.szMultichoice,              dw  g_szMultichoiceCfgBusType
     57    at  MENUITEM.itemValue + ITEM_VALUE.rgwChoiceToValueLookup,     dw  g_rgwChoiceToValueLookupForBusType
    6258    at  MENUITEM.itemValue + ITEM_VALUE.rgszValueToStringLookup,    dw  g_rgszValueToStringLookupForBusType
    6359iend
     
    9591g_MenuitemIdeControllerEnableInterrupt:
    9692istruc MENUITEM
    97     at  MENUITEM.fnActivate,        dw  Menuitem_ActivateMultichoiseSelectionForMenuitemInDSSI
     93    at  MENUITEM.fnActivate,        dw  Menuitem_ActivateMultichoiceSelectionForMenuitemInDSSI
    9894    at  MENUITEM.fnFormatValue,     dw  MenuitemPrint_WriteLookupValueStringToBufferInESDIfromShiftedItemInDSSI
    9995    at  MENUITEM.szName,            dw  g_szItemIdeEnIRQ
     
    10197    at  MENUITEM.szHelp,            dw  g_szHelpIdeEnIRQ
    10298    at  MENUITEM.bFlags,            db  FLG_MENUITEM_VISIBLE | FLG_MENUITEM_MODIFY_MENU | FLG_MENUITEM_FLAGVALUE
    103     at  MENUITEM.bType,             db  TYPE_MENUITEM_MULTICHOISE
     99    at  MENUITEM.bType,             db  TYPE_MENUITEM_MULTICHOICE
    104100    at  MENUITEM.itemValue + ITEM_VALUE.wRomvarsValueOffset,        dw  NULL
    105101    at  MENUITEM.itemValue + ITEM_VALUE.szDialogTitle,              dw  g_szDlgIdeEnIRQ
    106     at  MENUITEM.itemValue + ITEM_VALUE.szMultichoise,              dw  g_szMultichoiseBooleanFlag
     102    at  MENUITEM.itemValue + ITEM_VALUE.szMultichoice,              dw  g_szMultichoiceBooleanFlag
    107103    at  MENUITEM.itemValue + ITEM_VALUE.rgszValueToStringLookup,    dw  g_rgszValueToStringLookupForFlagBooleans
    108104    at  MENUITEM.itemValue + ITEM_VALUE.wValueBitmask,              dw  15
     
    124120iend
    125121
    126 g_rgwChoiseToValueLookupForBusType:
     122g_rgwChoiceToValueLookupForBusType:
    127123    dw  BUS_TYPE_8_DUAL
    128124    dw  BUS_TYPE_8_SINGLE
Note: See TracChangeset for help on using the changeset viewer.