[41] | 1 | ; Project name : Assembly Library
|
---|
| 2 | ; Description : Functions for managing display page.
|
---|
| 3 |
|
---|
[376] | 4 | ;
|
---|
| 5 | ; XTIDE Universal BIOS and Associated Tools
|
---|
| 6 | ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team.
|
---|
| 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.
|
---|
| 12 | ;
|
---|
| 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
|
---|
| 16 | ; GNU General Public License for more details.
|
---|
| 17 | ; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
---|
| 18 | ;
|
---|
| 19 |
|
---|
[41] | 20 | ; Section containing code
|
---|
| 21 | SECTION .text
|
---|
| 22 |
|
---|
| 23 | ;--------------------------------------------------------------------
|
---|
| 24 | ; DisplayPage_SetFromAL
|
---|
| 25 | ; Parameters:
|
---|
| 26 | ; AL: New display page
|
---|
| 27 | ; DS: BDA segment (zero)
|
---|
| 28 | ; Returns:
|
---|
| 29 | ; Nothing
|
---|
| 30 | ; Corrupts registers:
|
---|
| 31 | ; AX, DX
|
---|
| 32 | ;--------------------------------------------------------------------
|
---|
[370] | 33 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS OR EXCLUDE_FROM_XTIDECFG
|
---|
[369] | 34 | ALIGN DISPLAY_JUMP_ALIGN
|
---|
[41] | 35 | DisplayPage_SetFromAL:
|
---|
| 36 | xor ah, ah
|
---|
| 37 | mul WORD [VIDEO_BDA.wBytesPerPage] ; AX = Offset to page
|
---|
| 38 | mov [VIDEO_BDA.displayContext+DISPLAY_CONTEXT.fpCursorPosition], ax
|
---|
| 39 | ret
|
---|
[194] | 40 | %endif
|
---|
[41] | 41 |
|
---|
| 42 |
|
---|
| 43 | ;--------------------------------------------------------------------
|
---|
| 44 | ; DisplayPage_GetColumnsToALandRowsToAH
|
---|
| 45 | ; Parameters:
|
---|
| 46 | ; DS: BDA segment (zero)
|
---|
| 47 | ; Returns:
|
---|
| 48 | ; AL: Number of columns in selected text mode
|
---|
| 49 | ; AH: Number of rows in selected text mode
|
---|
| 50 | ; Corrupts registers:
|
---|
| 51 | ; Nothing
|
---|
| 52 | ;--------------------------------------------------------------------
|
---|
[369] | 53 | ALIGN DISPLAY_JUMP_ALIGN
|
---|
[41] | 54 | DisplayPage_GetColumnsToALandRowsToAH:
|
---|
| 55 | mov al, [VIDEO_BDA.wColumns] ; 40 or 80
|
---|
| 56 | mov ah, 25 ; Always 25 rows on standard text modes
|
---|
| 57 | ret
|
---|
| 58 |
|
---|
| 59 |
|
---|
| 60 | ;--------------------------------------------------------------------
|
---|
| 61 | ; DisplayPage_SynchronizeToHardware
|
---|
| 62 | ; Parameters:
|
---|
| 63 | ; DS: BDA segment (zero)
|
---|
| 64 | ; Returns:
|
---|
| 65 | ; Nothing
|
---|
| 66 | ; Corrupts registers:
|
---|
| 67 | ; AX, DX
|
---|
| 68 | ;--------------------------------------------------------------------
|
---|
[369] | 69 | ALIGN DISPLAY_JUMP_ALIGN
|
---|
[41] | 70 | DisplayPage_SynchronizeToHardware:
|
---|
| 71 | xor dx, dx
|
---|
| 72 | mov ax, [VIDEO_BDA.displayContext+DISPLAY_CONTEXT.fpCursorPosition]
|
---|
| 73 | div WORD [VIDEO_BDA.wBytesPerPage] ; AX = Page
|
---|
| 74 |
|
---|
| 75 | cmp al, [VIDEO_BDA.bActivePage]
|
---|
| 76 | je SHORT .Return ; Same page, no need to synchronize
|
---|
| 77 | mov ah, SELECT_ACTIVE_DISPLAY_PAGE
|
---|
| 78 | int BIOS_VIDEO_INTERRUPT_10h
|
---|
| 79 | .Return:
|
---|
| 80 | ret
|
---|