source: xtideuniversalbios/trunk/Assembly_Library/Src/Display/CgaSnow.asm @ 593

Last change on this file since 593 was 593, checked in by aitotat, 6 years ago

Flashing now works again.
Hack to get Windows 95 to work properly (MODULE_WIN95_CMOS_HACK included for 386 builds by default).
Edited makefile to produce large 386 build.
Fixed recovery time for QDI Vision VLB-IDE controllers.
No more warnings with Nasm 2.13.xx and later.
File dialog now properly restores default drive when file selection is cancelled.

File size: 4.3 KB
RevLine 
[48]1; Project name  :   Assembly Library
2; Description   :   Functions for preventing CGA snow.
3
[376]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.
[376]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;
[376]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.
[376]17; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
[491]18;
[376]19
[48]20; Section containing code
21SECTION .text
22
[50]23;--------------------------------------------------------------------
24; CgaSnow_IsCgaPresent
25;   Parameters:
26;       DS:     BDA segment (zero)
27;   Returns:
28;       CF:     Set if CGA detected
29;               Cleared if CGA not detected
30;   Corrupts registers:
[583]31;       Nothing
[50]32;--------------------------------------------------------------------
[369]33ALIGN DISPLAY_JUMP_ALIGN
[50]34CgaSnow_IsCgaPresent:
35    cmp     WORD [BDA.wVidPort], CGA_STATUS_REGISTER - OFFSET_TO_CGA_STATUS_REGISTER
36    jne     SHORT .CgaNotFound
[52]37
38    ; All standard CGA modes use 25 rows but only EGA and later store it to BDA.
[593]39    cmp     BYTE [BDA.bVidRows], 24     ; BDA contains rows - 1
[583]40    jae     SHORT .CgaNotFound
[50]41    ret
[369]42ALIGN DISPLAY_JUMP_ALIGN
[50]43.CgaNotFound:
44    clc
45    ret
[48]46
[50]47
[162]48; CGA snow prevention must be kept optional to avoid unnecessary
49; overhead when building programs meant for non-CGA systems.
[48]50%ifdef ELIMINATE_CGA_SNOW
51
52;--------------------------------------------------------------------
[49]53; CgaSnow_Stosb
54; CgaSnow_Stosw
[48]55;   Parameters:
56;       AL:     Character to output
57;       AH:     Attribute to output (CgaSnow_StoswWithoutCgaSnow only)
58;       DS:     BDA segment (zero)
59;       ES:DI:  Ptr to video memory where to output
60;   Returns:
61;       DI:     Incremented for next character
62;   Corrupts registers:
63;       AX, DX
64;--------------------------------------------------------------------
[369]65ALIGN DISPLAY_JUMP_ALIGN
[49]66CgaSnow_Stosb:
[50]67    call    LoadCgaStatusRegisterAddressToDXifCgaPresent
68    jz      SHORT .StosbWithoutWaitSinceUnknownPort
[48]69
70    mov     ah, al
71    cli             ; Interrupt request would mess up timing
72    WAIT_UNTIL_SAFE_CGA_WRITE
73    mov     al, ah
74.StosbWithoutWaitSinceUnknownPort:
75    stosb
76    sti
77    ret
78
[369]79ALIGN DISPLAY_JUMP_ALIGN
[49]80CgaSnow_Stosw:
[48]81    push    bx
[50]82    call    LoadCgaStatusRegisterAddressToDXifCgaPresent
83    jz      SHORT .StoswWithoutWaitSinceUnknownPort
[48]84
85    xchg    bx, ax
86    cli             ; Interrupt request would mess up timing
87    WAIT_UNTIL_SAFE_CGA_WRITE
88    xchg    ax, bx
89.StoswWithoutWaitSinceUnknownPort:
90    stosw
[162]91    sti
[48]92    pop     bx
93    ret
94
[491]95
[48]96;--------------------------------------------------------------------
[49]97; CgaSnow_RepMovsb
[48]98;   Parameters:
99;       CX:     Number of characters to copy
100;       DS:     BDA segment (zero)
101;       ES:SI:  Ptr to video memory where to read from
102;       ES:DI:  Ptr to video memory where to write to
103;   Returns:
104;       SI, DI: Updated for next character
105;   Corrupts registers:
106;       AX, CX, DX
107;--------------------------------------------------------------------
[592]108%ifdef EXCLUDE_FROM_XUB
[491]109    %ifdef MODULE_STRINGS_COMPRESSED
110        %define EXCLUDE
111    %endif
112    %ifdef MODULE_BOOT_MENU
113        %undef EXCLUDE
114    %endif
115%endif
116
117%ifndef EXCLUDE
[369]118ALIGN DISPLAY_JUMP_ALIGN
[49]119CgaSnow_RepMovsb:
[50]120    call    LoadCgaStatusRegisterAddressToDXifCgaPresent
121    jz      SHORT .RepMovsbWithoutWaitSinceUnknownPort
[48]122
123.MovsbNextByte:
124    cli             ; Interrupt request would mess up timing
125    WAIT_UNTIL_SAFE_CGA_WRITE
[223]126    es movsb
[48]127    sti
128    loop    .MovsbNextByte
129    ret
130.RepMovsbWithoutWaitSinceUnknownPort:
131    eSEG_STR rep, es, movsb
132    ret
[489]133%endif
[491]134%undef EXCLUDE
[48]135
[491]136
[48]137;--------------------------------------------------------------------
[50]138; LoadCgaStatusRegisterAddressToDXifCgaPresent
[48]139;   Parameters:
140;       DS:     BDA segment (zero)
141;   Returns:
142;       DX:     CGA Status Register Address
[50]143;       ZF:     Set if CGA not present
144;               Cleared if CGA present
[48]145;   Corrupts registers:
146;       Nothing
147;--------------------------------------------------------------------
[369]148ALIGN DISPLAY_JUMP_ALIGN
[50]149LoadCgaStatusRegisterAddressToDXifCgaPresent:
150    test    BYTE [VIDEO_BDA.displayContext+DISPLAY_CONTEXT.bFlags], FLG_CONTEXT_CGA
151    jz      SHORT .NoCgaDetected
152    mov     dx, CGA_STATUS_REGISTER
[369]153ALIGN DISPLAY_JUMP_ALIGN, ret
[50]154.NoCgaDetected:
[48]155    ret
156
157
158%endif ; ELIMINATE_CGA_SNOW
Note: See TracBrowser for help on using the repository browser.