source: xtideuniversalbios/trunk/XTIDE_Universal_BIOS/Src/VariablesAndDPTs/RamVars.asm @ 270

Last change on this file since 270 was 270, checked in by gregli@…, 12 years ago

Fixed a bug with the number of floppy drives reported, if there were no floppy drives emulated.

File size: 5.0 KB
RevLine 
[90]1; Project name  :   XTIDE Universal BIOS
[3]2; Description   :   Functions for accessings RAMVARS.
3
4; Section containing code
5SECTION .text
6
7;--------------------------------------------------------------------
8; Initializes RAMVARS.
9; Drive detection can be started after this function returns.
10;
11; RamVars_Initialize
12;   Parameters:
13;       Nothing
14;   Returns:
[97]15;       DS:     RAMVARS segment
[3]16;   Corrupts registers:
[97]17;       AX, CX, DI
[3]18;--------------------------------------------------------------------
19RamVars_Initialize:
[90]20    push    es
[97]21    ; Fall to .StealMemoryForRAMVARS
[3]22
23;--------------------------------------------------------------------
[33]24; .StealMemoryForRAMVARS
[3]25;   Parameters:
26;       Nothing
27;   Returns:
28;       DS:     RAMVARS segment
29;   Corrupts registers:
30;       AX
31;--------------------------------------------------------------------
[33]32.StealMemoryForRAMVARS:
[241]33    mov     ax, LITE_MODE_RAMVARS_SEGMENT
[3]34    test    BYTE [cs:ROMVARS.wFlags], FLG_ROMVARS_FULLMODE
[97]35    jz      SHORT .InitializeRamvars    ; No need to steal RAM
[3]36
[116]37    LOAD_BDA_SEGMENT_TO ds, ax, !       ; Zero AX
[3]38    mov     al, [cs:ROMVARS.bStealSize]
[33]39    sub     [BDA.wBaseMem], ax
40    mov     ax, [BDA.wBaseMem]
[97]41    eSHL_IM ax, 6                       ; Segment to first stolen kB (*=40h)
[150]42    ; Fall to .InitializeRamvars
[3]43
[33]44;--------------------------------------------------------------------
[97]45; .InitializeRamvars
[33]46;   Parameters:
[241]47;       AX:     RAMVARS segment
[97]48;   Returns:
[33]49;       DS:     RAMVARS segment
50;   Corrupts registers:
51;       AX, CX, DI, ES
52;--------------------------------------------------------------------
[97]53.InitializeRamvars:
[241]54    mov     ds, ax
55    mov     es, ax
[97]56    mov     cx, RAMVARS_size
57    xor     di, di
58    call    Memory_ZeroESDIwithSizeInCX
[150]59    mov     WORD [RAMVARS.wSignature], RAMVARS_SIGNATURE
[97]60    ; Fall to .InitializeDriveTranslationAndReturn
[3]61
[97]62;--------------------------------------------------------------------
63; .InitializeDriveTranslationAndReturn
64;   Parameters:
65;       DS:     RAMVARS segment
66;   Returns:
67;       Nothing
68;   Corrupts registers:
69;       AX
70;--------------------------------------------------------------------
71.InitializeDriveTranslationAndReturn:
72    pop     es
73    jmp     DriveXlate_Reset
[33]74
[97]75
[3]76;--------------------------------------------------------------------
77; Returns segment to RAMVARS.
78; RAMVARS might be located at the top of interrupt vectors (0030:0000h)
79; or at the top of system base RAM.
80;
81; RamVars_GetSegmentToDS
82;   Parameters:
83;       Nothing
84;   Returns:
85;       DS:     RAMVARS segment
86;   Corrupts registers:
87;       DI
88;--------------------------------------------------------------------
89ALIGN JUMP_ALIGN
90RamVars_GetSegmentToDS:
91    test    BYTE [cs:ROMVARS.wFlags], FLG_ROMVARS_FULLMODE
[33]92    jnz     SHORT .GetStolenSegmentToDS
[181]93%ifndef USE_186
[150]94    mov     di, LITE_MODE_RAMVARS_SEGMENT
[3]95    mov     ds, di
[181]96%else
97    push    LITE_MODE_RAMVARS_SEGMENT
98    pop     ds
99%endif
[3]100    ret
101
102ALIGN JUMP_ALIGN
[33]103.GetStolenSegmentToDS:
[3]104    LOAD_BDA_SEGMENT_TO ds, di
105    mov     di, [BDA.wBaseMem]      ; Load available base memory size in kB
[33]106    eSHL_IM di, 6                   ; Segment to first stolen kB (*=40h)
[3]107ALIGN JUMP_ALIGN
108.LoopStolenKBs:
109    mov     ds, di                  ; EBDA segment to DS
110    add     di, BYTE 64             ; DI to next stolen kB
[150]111    cmp     WORD [RAMVARS.wSignature], RAMVARS_SIGNATURE
[3]112    jne     SHORT .LoopStolenKBs    ; Loop until sign found (always found eventually)
113    ret
114
115
116;--------------------------------------------------------------------
[258]117; RamVars_GetHardDiskCountFromBDAtoAX
[3]118;   Parameters:
119;       DS:     RAMVARS segment
120;   Returns:
[258]121;       AX:     Total hard disk count
[3]122;   Corrupts registers:
[258]123;       CX
[116]124;--------------------------------------------------------------------
[3]125ALIGN JUMP_ALIGN
[258]126RamVars_GetHardDiskCountFromBDAtoAX:
[3]127    push    es
[32]128
[258]129    LOAD_BDA_SEGMENT_TO es, ax
130    call    RamVars_GetCountOfKnownDrivesToAX
[181]131    mov     cl, [es:BDA.bHDCount]
[258]132    MAX_U   al, cl
133       
[3]134    pop     es
135    ret
[32]136
137;--------------------------------------------------------------------
[258]138; RamVars_GetCountOfKnownDrivesToAX
[32]139;   Parameters:
140;       DS:     RAMVARS segment
141;   Returns:
[258]142;       AX:     Total hard disk count
[32]143;   Corrupts registers:
[258]144;       None
[116]145;--------------------------------------------------------------------
[32]146ALIGN JUMP_ALIGN
[258]147RamVars_GetCountOfKnownDrivesToAX:
148    mov     ax, [RAMVARS.wDrvCntAndFirst]
149    add     al, ah
150    and     al, 7fh
151    cbw
[32]152    ret
[258]153   
[33]154;--------------------------------------------------------------------
155; RamVars_GetIdeControllerCountToCX
156;   Parameters:
157;       Nothing
158;   Returns:
159;       CX:     Number of IDE controllers to handle
160;   Corrupts registers:
161;       Nothing
[116]162;--------------------------------------------------------------------
[258]163ALIGN JUMP_ALIGN
[33]164RamVars_GetIdeControllerCountToCX:
[99]165    eMOVZX  cx, BYTE [cs:ROMVARS.bIdeCnt]
[33]166    ret
[258]167
168%ifdef MODULE_SERIAL_FLOPPY
169;--------------------------------------------------------------------
170; RamVars_UnpackFlopCntAndFirstToAL
171;   Parameters:
172;       Nothing
173;   Returns:
174;       AL:     First floppy drive number supported
175;       CF:     Number of floppy drives supported (clear = 1, set = 2)
[270]176;       SF:     Emulating drives (clear = yes, set = no)
[258]177;   Corrupts registers:
178;       Nothing
179;--------------------------------------------------------------------       
180ALIGN JUMP_ALIGN
181RamVars_UnpackFlopCntAndFirstToAL:
182    mov     al, [RAMVARS.xlateVars+XLATEVARS.bFlopCntAndFirst]
183    sar     al, 1       
184    ret
185%endif
Note: See TracBrowser for help on using the repository browser.