source: xtideuniversalbios/trunk/XTIDE_Universal_BIOS/Src/Menus/BootMenu/BootMenuPrintCfg.asm@ 461

Last change on this file since 461 was 422, checked in by aitotat@…, 12 years ago

Changes to XTIDE Universal BIOS:

  • Modified ROMVARS for user defined CHS translation mode.
  • Base DPT struct now includes initialization error flags again.
File size: 4.2 KB
RevLine 
[392]1; Project name : XTIDE Universal BIOS
2; Description : Functions for printing drive configuration
3; information on Boot Menu.
[399]4;
[392]5; Included by BootMenuPrint.asm, this routine is to be inserted into
6; BootMenuPrint_HardDiskRefreshInformation.
7;
8
9;
[399]10; XTIDE Universal BIOS and Associated Tools
[392]11; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team.
12;
13; This program is free software; you can redistribute it and/or modify
14; it under the terms of the GNU General Public License as published by
15; the Free Software Foundation; either version 2 of the License, or
16; (at your option) any later version.
[399]17;
[392]18; This program is distributed in the hope that it will be useful,
19; but WITHOUT ANY WARRANTY; without even the implied warranty of
20; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21; GNU General Public License for more details.
[399]22; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
[392]23;
[399]24
[392]25; Section containing code
26SECTION .text
27
28;;; fall-into from BootMenuPrint_HardDiskRefreshInformation.
29
30;--------------------------------------------------------------------
31; Prints Hard Disk configuration for drive handled by our BIOS.
32; Cursor is set to configuration header string position.
33;
34; BootMenuPrintCfg_ForOurDrive
35; Parameters:
36; DS:DI: Pointer to DPT
37; Returns:
38; Nothing
39; Corrupts registers:
40; AX, BX, CX, DX
41;--------------------------------------------------------------------
42.BootMenuPrintCfg_ForOurDrive:
43 eMOVZX ax, [di+DPT.bIdevarsOffset]
44 xchg bx, ax ; CS:BX now points to IDEVARS
[421]45 ; Fall to .PushAddressingMode
[392]46
47;--------------------------------------------------------------------
[421]48; .PushAddressingMode
[392]49; Parameters:
50; DS:DI: Ptr to DPT
51; CS:BX: Ptr to IDEVARS
52; Returns:
53; Nothing (jumps to next push below)
54; Corrupts registers:
[421]55; AX, CX, DX
[392]56;--------------------------------------------------------------------
57.PushAddressingMode:
[422]58 ACCESSDPT__GET_UNSHIFTED_TRANSLATE_MODE_TO_AXZF
[392]59 ;;
60 ;; This multiply both shifts the addressing mode bits down to low order bits, and
61 ;; at the same time multiplies by the size of the string displacement. The result is in AH,
62 ;; with AL clear, and so we exchange AL and AH after the multiply for the final result.
63 ;;
[422]64 mov cx, g_szAddressingModes_Displacement << (8-TRANSLATEMODE_FIELD_POSITION)
[421]65 mul cx
66 xchg al, ah ; AL = always zero after above multiplication
67 add ax, g_szAddressingModes
[392]68 push ax
[421]69 ; Fall to .PushBlockMode
[392]70
71;--------------------------------------------------------------------
[421]72; .PushBlockMode
[392]73; Parameters:
74; DS:DI: Ptr to DPT
75; CS:BX: Ptr to IDEVARS
76; Returns:
77; Nothing (falls to next push below)
78; Corrupts registers:
79; AX
80;--------------------------------------------------------------------
81.PushBlockMode:
82 mov ax, 1
83 test BYTE [di+DPT.bFlagsHigh], FLGH_DPT_BLOCK_MODE_SUPPORTED
84 jz SHORT .PushBlockSizeFromAX
85 mov al, [di+DPT_ATA.bBlockSize]
86.PushBlockSizeFromAX:
87 push ax
88
89;--------------------------------------------------------------------
90; PushBusType
91; Parameters:
92; DS:DI: Ptr to DPT
93; CS:BX: Ptr to IDEVARS
94; Returns:
95; Nothing (jumps to next push below)
96; Corrupts registers:
97; AX, DX
98;--------------------------------------------------------------------
99.PushBusType:
100 mov al,g_szBusTypeValues_Displacement
101 mul BYTE [cs:bx+IDEVARS.bDevice]
102
103 shr ax,1 ; divide by 2 since IDEVARS.bDevice is multiplied by 2
104
105 add ax,g_szBusTypeValues
106 push ax
107
108;--------------------------------------------------------------------
109; PushIRQ
110; Parameters:
111; DS:DI: Ptr to DPT
112; CS:BX: Ptr to IDEVARS
113; Returns:
114; Nothing (falls to next push below)
115; Corrupts registers:
116; AX, DX
117;--------------------------------------------------------------------
118.PushIRQ:
119 mov al, [cs:bx+IDEVARS.bIRQ]
120 cbw
121 push ax
122
123;--------------------------------------------------------------------
124; PushResetStatus
125; Parameters:
126; DS:DI: Ptr to DPT
127; CS:BX: Ptr to IDEVARS
128; Returns:
129; Nothing (falls to next push below)
130; Corrupts registers:
131; AX, BX, DX, ES
132;--------------------------------------------------------------------
133.PushResetStatus:
[422]134 mov al, [di+DPT.bInitError]
[392]135 push ax
136
137;;; fall-out to BootMenuPrint_HardDiskRefreshInformation.
Note: See TracBrowser for help on using the repository browser.