Changeset 86 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Libraries
- Timestamp:
- Jan 25, 2011, 9:13:56 PM (14 years ago)
- google:author:
- krille_n_@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Libraries/menu/menucrsr.asm
r3 r86 1 ; File name : menucrsr.asm2 1 ; Project name : Menu library 3 ; Created date : 10.11.20094 ; Last update : 17.1.20105 ; Author : Tomi Tilli6 2 ; Description : ASM library to menu system. 7 3 ; Contains menu cursor functions. … … 160 156 ALIGN JUMP_ALIGN 161 157 MenuCrsr_SetCursor: 162 xor bx, bx ; Zero page163 158 mov ah, 02h ; Set Cursor Position and Size 164 int 10h165 ret159 SKIP2B bx ; mov bx, <next instruction> 160 ; Fall through to MenuCrsr_GetCursor 166 161 167 162 … … 178 173 ; AX, BX 179 174 ;-------------------------------------------------------------------- 180 ALIGN JUMP_ALIGN175 ;ALIGN JUMP_ALIGN 181 176 MenuCrsr_GetCursor: 177 mov ah, 03h ; Get Cursor Position and Size 182 178 xor bx, bx ; Zero page 183 mov ah, 03h ; Get Cursor Position and Size184 179 int 10h 185 180 ret
Note:
See TracChangeset
for help on using the changeset viewer.