Changeset 49 in xtideuniversalbios for trunk/Assembly_Library/Src


Ignore:
Timestamp:
Oct 8, 2010, 4:04:22 PM (14 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to Assembly Library:
Small changes to function names in CgaSnow.asm.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Assembly_Library/Src/Display/CgaSnow.asm

    r48 r49  
    1515
    1616;--------------------------------------------------------------------
    17 ; CgaSnow_StosbWithoutCgaSnow
    18 ; CgaSnow_StoswWithoutCgaSnow
     17; CgaSnow_Stosb
     18; CgaSnow_Stosw
    1919;   Parameters:
    2020;       AL:     Character to output
     
    2828;--------------------------------------------------------------------
    2929ALIGN JUMP_ALIGN
    30 CgaSnow_StosbWithoutCgaSnow:
     30CgaSnow_Stosb:
    3131    call    LoadAndVerifyStatusRegisterFromBDA
    3232    jne     SHORT .StosbWithoutWaitSinceUnknownPort
     
    4242
    4343ALIGN JUMP_ALIGN
    44 CgaSnow_StoswWithoutCgaSnow:
     44CgaSnow_Stosw:
    4545    push    bx
    4646    call    LoadAndVerifyStatusRegisterFromBDA
     
    5959
    6060;--------------------------------------------------------------------
    61 ; CgaSnow_ScasbWithoutCgaSnow
     61; CgaSnow_Scasb
    6262;   Parameters:
    6363;       AL:     Byte for comparison
     
    7070;--------------------------------------------------------------------
    7171ALIGN JUMP_ALIGN
    72 CgaSnow_ScasbWithoutCgaSnow:
     72CgaSnow_Scasb:
    7373    call    LoadAndVerifyStatusRegisterFromBDA
    7474    jne     SHORT .ScasbWithoutWaitSinceUnknownPort
     
    7777    cli             ; Interrupt request would mess up timing
    7878    WAIT_UNTIL_SAFE_CGA_WRITE
     79    mov     al, ah
    7980.ScasbWithoutWaitSinceUnknownPort:
    80     mov     al, ah
    8181    scasb
    8282    sti
     
    8585
    8686;--------------------------------------------------------------------
    87 ; CgaSnow_RepMovsbWithoutCgaSnow
     87; CgaSnow_RepMovsb
    8888;   Parameters:
    8989;       CX:     Number of characters to copy
     
    9797;--------------------------------------------------------------------
    9898ALIGN JUMP_ALIGN
    99 CgaSnow_RepMovsbWithoutCgaSnow:
     99CgaSnow_RepMovsb:
    100100    call    LoadAndVerifyStatusRegisterFromBDA
    101101    jne     SHORT .RepMovsbWithoutWaitSinceUnknownPort
Note: See TracChangeset for help on using the changeset viewer.