Changeset 162 in xtideuniversalbios for trunk/Assembly_Library/Src/Display
- Timestamp:
- May 28, 2011, 7:34:42 PM (13 years ago)
- google:author:
- krille_n_@hotmail.com
- Location:
- trunk/Assembly_Library/Src/Display
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/Display/CgaSnow.asm
r101 r162 31 31 32 32 33 ; CGA snow preventi ng must be kept optional so unnecerrasy overhead34 ; can be prevented when building program ment for non-CGA systems.33 ; CGA snow prevention must be kept optional to avoid unnecessary 34 ; overhead when building programs meant for non-CGA systems. 35 35 %ifdef ELIMINATE_CGA_SNOW 36 36 … … 74 74 .StoswWithoutWaitSinceUnknownPort: 75 75 stosw 76 sti 76 77 pop bx 77 sti78 78 ret 79 79 -
trunk/Assembly_Library/Src/Display/DisplayContext.asm
r133 r162 268 268 ; Nothing 269 269 ;-------------------------------------------------------------------- 270 %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS ; This appears to be completely unused271 ALIGN JUMP_ALIGN272 DisplayContext_GetCharacterOutputParameterToDX:273 mov dx, [VIDEO_BDA.displayContext+DISPLAY_CONTEXT.wCharOutParam]274 ret275 %endif270 ;%ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS ; This appears to be completely unused 271 ;ALIGN JUMP_ALIGN 272 ;DisplayContext_GetCharacterOutputParameterToDX: 273 ; mov dx, [VIDEO_BDA.displayContext+DISPLAY_CONTEXT.wCharOutParam] 274 ; ret 275 ;%endif 276 276 277 277 -
trunk/Assembly_Library/Src/Display/DisplayPrint.asm
r134 r162 25 25 ; For example %8-d would prepend integer with spaces so that at least 26 26 ; 8 characters would be printed. 27 ; 27 ; 28 28 ; DisplayPrint_FormattedNullTerminatedStringFromCSSI 29 29 ; Parameters: … … 158 158 loop .PrintNextCharacter 159 159 160 LOAD_BDA_SEGMENT_TO ds, dx160 mov ds, cx ; Restore DS to BDA. Not needed unless DisplayPrint_CharacterFromAL changes DS. 161 161 pop cx 162 162 pop si
Note:
See TracChangeset
for help on using the changeset viewer.