source: xtideuniversalbios/trunk/XTIDE_Universal_BIOS/Src/VariablesAndDPTs/BootVars.asm@ 546

Last change on this file since 546 was 545, checked in by aitotat@…, 11 years ago

Changes to XTIDE Universal BIOS:

  • Integrated XT-CFv3 support by James Pearce.
  • XT-CFv2 memory mapped I/O and DMA modes are no longer supported (but PIO mode is).
File size: 2.1 KB
RevLine 
[392]1; Project name : XTIDE Universal BIOS
2; Description : Functions for accessings BOOTVARS.
3
4;
[491]5; XTIDE Universal BIOS and Associated Tools
[526]6; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team.
[392]7;
8; This program is free software; you can redistribute it and/or modify
9; it under the terms of the GNU General Public License as published by
10; the Free Software Foundation; either version 2 of the License, or
11; (at your option) any later version.
[491]12;
[392]13; This program is distributed in the hope that it will be useful,
14; but WITHOUT ANY WARRANTY; without even the implied warranty of
15; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
[491]16; GNU General Public License for more details.
[392]17; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
[491]18;
[392]19
20; Section containing code
21SECTION .text
22
23;--------------------------------------------------------------------
24; BootVars_Initialize
25; Parameters:
26; DS: RAMVARS Segment
27; ES: BDA Segment
28; Returns:
29; Nothing
30; Corrupts registers:
31; AX, CX, DX, DI
32;--------------------------------------------------------------------
33BootVars_Initialize:
[524]34 ; Clear all DRVDETECTINFO structs to zero
[397]35 mov al, DRVDETECTINFO_size
[392]36 mul BYTE [cs:ROMVARS.bIdeCnt]
[524]37 mov di, BOOTVARS.rgDrvDetectInfo ; We must not initialize anything before this!
[392]38 xchg cx, ax
[528]39%ifndef MODULE_HOTKEYS
40 jmp Memory_ZeroESDIwithSizeInCX
[395]41
[528]42%else ; if MODULE_HOTKEYS
[392]43 call Memory_ZeroESDIwithSizeInCX
44
[524]45 ; Initialize HOTKEYVARS by storing default drives to boot from
[528]46 call BootVars_StoreDefaultDriveLettersToHotkeyVars
[395]47 mov dl, [cs:ROMVARS.bBootDrv]
[528]48 jmp HotkeyBar_StoreHotkeyToBootvarsForDriveNumberInDL
[392]49
[528]50
51;--------------------------------------------------------------------
52; BootVars_StoreDefaultDriveLettersToHotkeyVars
53; Parameters:
54; ES: BDA Segment
55; Returns:
56; Nothing
57; Corrupts registers:
58; Nothing
59;--------------------------------------------------------------------
60BootVars_StoreDefaultDriveLettersToHotkeyVars:
61 mov WORD [es:BOOTVARS.hotkeyVars+HOTKEYVARS.wFddAndHddLetters], DEFAULT_FLOPPY_DRIVE_LETTER | (DEFAULT_HARD_DRIVE_LETTER<<8)
62 ret
63
[395]64%endif ; MODULE_HOTKEYS
Note: See TracBrowser for help on using the repository browser.