Changeset 548 in xtideuniversalbios
- Timestamp:
- Apr 22, 2013, 9:25:27 AM (12 years ago)
- google:author:
- aitotat@gmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS_Configurator_v2/Src/Menupages/MasterSlaveMenu.asm
r526 r548 120 120 at MENUITEM.itemValue + ITEM_VALUE.szDialogTitle, dw g_szDlgDrvCyls 121 121 at MENUITEM.itemValue + ITEM_VALUE.wMinValue, dw 1 122 at MENUITEM.itemValue + ITEM_VALUE.wMaxValue, dw MAX_ USER_CYLINDERS123 %define MASTERSLAVE_CYLINDERS_DEFAULT 65122 at MENUITEM.itemValue + ITEM_VALUE.wMaxValue, dw MAX_PCHS_CYLINDERS 123 %define MASTERSLAVE_CYLINDERS_DEFAULT 1024 ; Max L-CHS Cylinders 124 124 iend 125 125 … … 136 136 at MENUITEM.itemValue + ITEM_VALUE.szDialogTitle, dw g_szDlgDrvHeads 137 137 at MENUITEM.itemValue + ITEM_VALUE.wMinValue, dw 1 138 at MENUITEM.itemValue + ITEM_VALUE.wMaxValue, dw MAX_ USER_HEADS139 %define MASTERSLAVE_HEADS_DEFAULT MAX_ USER_HEADS138 at MENUITEM.itemValue + ITEM_VALUE.wMaxValue, dw MAX_PCHS_HEADS 139 %define MASTERSLAVE_HEADS_DEFAULT MAX_PCHS_HEADS 140 140 iend 141 141 … … 152 152 at MENUITEM.itemValue + ITEM_VALUE.szDialogTitle, dw g_szDlgDrvSect 153 153 at MENUITEM.itemValue + ITEM_VALUE.wMinValue, dw 1 154 at MENUITEM.itemValue + ITEM_VALUE.wMaxValue, dw MAX_ USER_SECTORS_PER_TRACK155 %define MASTERSLAVE_SECTORS_DEFAULT MAX_ USER_SECTORS_PER_TRACK154 at MENUITEM.itemValue + ITEM_VALUE.wMaxValue, dw MAX_PCHS_SECTORS_PER_TRACK 155 %define MASTERSLAVE_SECTORS_DEFAULT MAX_PCHS_SECTORS_PER_TRACK 156 156 iend 157 157 … … 184 184 at MENUITEM.itemValue + ITEM_VALUE.wRomvarsValueOffset, dw NULL 185 185 at MENUITEM.itemValue + ITEM_VALUE.szDialogTitle, dw g_szDlgDrvLbaSectors 186 at MENUITEM.itemValue + ITEM_VALUE.wMinValue, dw 16 ; 8 GiB 186 at MENUITEM.itemValue + ITEM_VALUE.wMinValue, dw 16 ; 8 GiB (but a little more than L-CHS limit) 187 187 at MENUITEM.itemValue + ITEM_VALUE.wMaxValue, dw 10000000h / (1024 * 1024) ; Limit to 28-bit LBA 188 188 at MENUITEM.itemValue + ITEM_VALUE.fnValueReader, dw ValueReaderForUserLbaValue 189 189 at MENUITEM.itemValue + ITEM_VALUE.fnValueWriter, dw ValueWriterForUserLbaValue 190 %define MASTERSLAVE_USERLBA_DEFAULT 64 190 %define MASTERSLAVE_USERLBA_DEFAULT 64 ; 32 GiB (max supported by Win95) 191 191 iend 192 192
Note:
See TracChangeset
for help on using the changeset viewer.