Ignore:
Timestamp:
Nov 21, 2011, 11:01:08 AM (12 years ago)
Author:
gregli@…
google:author:
gregli@hotmail.com
Message:

Adding proper serial port support to the Configurator, which required some minor changes elsewhere. Also added an option, off by default, to automatically scan for serial drives at the end of normal drive detection (no ALT key required, although that is still available if the option is off).

File:
1 edited

Legend:

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

    r144 r199  
    1010    at  MENUPAGE.fnEnter,           dw  BootMenuSettingsMenu_EnterMenuOrModifyItemVisibility
    1111    at  MENUPAGE.fnBack,            dw  ConfigurationMenu_EnterMenuOrModifyItemVisibility
    12     at  MENUPAGE.wMenuitems,        dw  6
     12    at  MENUPAGE.wMenuitems,        dw  7
    1313iend
    1414
     
    6666    at  MENUITEM.itemValue + ITEM_VALUE.szDialogTitle,              dw  g_szDlgBootFloppyDrvs
    6767    at  MENUITEM.itemValue + ITEM_VALUE.szMultichoice,              dw  g_szMultichoiceBootFloppyDrvs
    68     at  MENUITEM.itemValue + ITEM_VALUE.rgwChoiceToValueLookup,     dw  g_rgwChoiceToValueLookupForFloppyDrives
     68    at  MENUITEM.itemValue + ITEM_VALUE.rgwChoiceToValueLookup,     dw  NULL
    6969    at  MENUITEM.itemValue + ITEM_VALUE.rgszValueToStringLookup,    dw  g_rgszValueToStringLookupForFloppyDrives
    7070iend
     
    101101iend
    102102
     103g_MenuitemBootMenuSerialScanDetect:     
     104istruc MENUITEM
     105    at  MENUITEM.fnActivate,        dw  Menuitem_ActivateMultichoiceSelectionForMenuitemInDSSI
     106    at  MENUITEM.fnFormatValue,     dw  MenuitemPrint_WriteLookupValueStringToBufferInESDIfromShiftedItemInDSSI
     107    at  MENUITEM.szName,            dw  g_szItemSerialDetect
     108    at  MENUITEM.szQuickInfo,       dw  g_szNfoSerialDetect
     109    at  MENUITEM.szHelp,            dw  g_szHelpSerialDetect
     110    at  MENUITEM.bFlags,            db  FLG_MENUITEM_VISIBLE | FLG_MENUITEM_FLAGVALUE
     111    at  MENUITEM.bType,             db  TYPE_MENUITEM_MULTICHOICE
     112    at  MENUITEM.itemValue + ITEM_VALUE.wRomvarsValueOffset,        dw  ROMVARS.wFlags
     113    at  MENUITEM.itemValue + ITEM_VALUE.szDialogTitle,              dw  g_szDlgSerialDetect
     114    at  MENUITEM.itemValue + ITEM_VALUE.szMultichoice,              dw  g_szMultichoiceBooleanFlag
     115    at  MENUITEM.itemValue + ITEM_VALUE.rgszValueToStringLookup,    dw  g_rgszValueToStringLookupForFlagBooleans
     116    at  MENUITEM.itemValue + ITEM_VALUE.wValueBitmask,              dw  FLG_ROMVARS_SERIAL_SCANDETECT
     117iend       
     118
    103119g_rgwChoiceToValueLookupForDisplayModes:
    104120    dw  DEFAULT_TEXT_MODE
     
    118134    dw  g_szValueBootDispModeMono
    119135
    120 g_rgwChoiceToValueLookupForFloppyDrives:    ; (No translation)
    121     dw  0
    122     dw  1
    123     dw  2
    124     dw  3
    125     dw  4
    126136g_rgszValueToStringLookupForFloppyDrives:
    127137    dw  g_szValueBootFloppyDrvsAuto
Note: See TracChangeset for help on using the changeset viewer.