[41] | 1 | ; Project name : Assembly Library
|
---|
| 2 | ; Description : Functions for managing display page.
|
---|
| 3 |
|
---|
[376] | 4 | ;
|
---|
[526] | 5 | ; XTIDE Universal BIOS and Associated Tools
|
---|
| 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.
|
---|
[526] | 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
|
---|
[526] | 16 | ; GNU General Public License for more details.
|
---|
[376] | 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 |
|
---|
[492] | 43 | %ifdef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
| 44 | %define EXCLUDE
|
---|
| 45 | %ifdef MODULE_HOTKEYS
|
---|
| 46 | %undef EXCLUDE
|
---|
| 47 | %endif
|
---|
| 48 | %ifdef MODULE_BOOT_MENU
|
---|
| 49 | %undef EXCLUDE
|
---|
| 50 | %endif
|
---|
| 51 | %endif
|
---|
| 52 |
|
---|
[526] | 53 | %ifndef EXCLUDE
|
---|
[41] | 54 | ;--------------------------------------------------------------------
|
---|
| 55 | ; DisplayPage_GetColumnsToALandRowsToAH
|
---|
| 56 | ; Parameters:
|
---|
| 57 | ; DS: BDA segment (zero)
|
---|
| 58 | ; Returns:
|
---|
| 59 | ; AL: Number of columns in selected text mode
|
---|
| 60 | ; AH: Number of rows in selected text mode
|
---|
| 61 | ; Corrupts registers:
|
---|
| 62 | ; Nothing
|
---|
| 63 | ;--------------------------------------------------------------------
|
---|
[369] | 64 | ALIGN DISPLAY_JUMP_ALIGN
|
---|
[41] | 65 | DisplayPage_GetColumnsToALandRowsToAH:
|
---|
| 66 | mov al, [VIDEO_BDA.wColumns] ; 40 or 80
|
---|
| 67 | mov ah, 25 ; Always 25 rows on standard text modes
|
---|
| 68 | ret
|
---|
[492] | 69 | %endif
|
---|
[526] | 70 | %undef EXCLUDE
|
---|
[41] | 71 |
|
---|
| 72 | ;--------------------------------------------------------------------
|
---|
| 73 | ; DisplayPage_SynchronizeToHardware
|
---|
| 74 | ; Parameters:
|
---|
| 75 | ; DS: BDA segment (zero)
|
---|
| 76 | ; Returns:
|
---|
| 77 | ; Nothing
|
---|
| 78 | ; Corrupts registers:
|
---|
| 79 | ; AX, DX
|
---|
| 80 | ;--------------------------------------------------------------------
|
---|
[369] | 81 | ALIGN DISPLAY_JUMP_ALIGN
|
---|
[41] | 82 | DisplayPage_SynchronizeToHardware:
|
---|
| 83 | xor dx, dx
|
---|
| 84 | mov ax, [VIDEO_BDA.displayContext+DISPLAY_CONTEXT.fpCursorPosition]
|
---|
| 85 | div WORD [VIDEO_BDA.wBytesPerPage] ; AX = Page
|
---|
| 86 |
|
---|
| 87 | cmp al, [VIDEO_BDA.bActivePage]
|
---|
| 88 | je SHORT .Return ; Same page, no need to synchronize
|
---|
| 89 | mov ah, SELECT_ACTIVE_DISPLAY_PAGE
|
---|
| 90 | int BIOS_VIDEO_INTERRUPT_10h
|
---|
| 91 | .Return:
|
---|
| 92 | ret
|
---|