[41] | 1 | ; Project name : Assembly Library
|
---|
| 2 | ; Description : Functions for handling characters.
|
---|
| 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 | ; This macro can only be used within this source file!!!
|
---|
| 25 | ; IS_BETWEEN_IMMEDIATES
|
---|
| 26 | ; Parameters:
|
---|
| 27 | ; %1: Value to check
|
---|
| 28 | ; %2: First accepted value in range
|
---|
| 29 | ; %3: Last accepted value in range
|
---|
| 30 | ; Returns:
|
---|
| 31 | ; CF: Set if character is range
|
---|
[162] | 32 | ; (Jumps to Char_CharIsNotValid if before range)
|
---|
[41] | 33 | ; Corrupts registers:
|
---|
| 34 | ; Nothing
|
---|
| 35 | ;--------------------------------------------------------------------
|
---|
| 36 | %macro IS_BETWEEN_IMMEDIATES 3
|
---|
| 37 | cmp %1, %2
|
---|
[162] | 38 | jb SHORT Char_CharIsNotValid
|
---|
[41] | 39 | cmp %1, (%3)+1 ; Set CF if %1 is lesser
|
---|
| 40 | %endmacro
|
---|
| 41 |
|
---|
| 42 |
|
---|
| 43 | ;--------------------------------------------------------------------
|
---|
| 44 | ; Char_IsLowerCaseLetterInAL
|
---|
| 45 | ; Parameters:
|
---|
| 46 | ; AL: Character to check
|
---|
| 47 | ; Returns:
|
---|
| 48 | ; CF: Set if character is lower case letter ('a'...'z')
|
---|
| 49 | ; Cleared if character is not lower case letter
|
---|
| 50 | ; Corrupts registers:
|
---|
| 51 | ; Nothing
|
---|
| 52 | ;--------------------------------------------------------------------
|
---|
[369] | 53 | ALIGN STRING_JUMP_ALIGN
|
---|
[41] | 54 | Char_IsLowerCaseLetterInAL:
|
---|
| 55 | IS_BETWEEN_IMMEDIATES al, 'a', 'z'
|
---|
| 56 | ret
|
---|
| 57 |
|
---|
| 58 | ;--------------------------------------------------------------------
|
---|
| 59 | ; Char_IsUpperCaseLetterInAL
|
---|
| 60 | ; Parameters:
|
---|
| 61 | ; AL: Character to check
|
---|
| 62 | ; Returns:
|
---|
| 63 | ; CF: Set if character is upper case letter ('A'...'Z')
|
---|
| 64 | ; Cleared if character is not upper case letter
|
---|
| 65 | ; Corrupts registers:
|
---|
| 66 | ; Nothing
|
---|
| 67 | ;--------------------------------------------------------------------
|
---|
[162] | 68 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
[369] | 69 | ALIGN STRING_JUMP_ALIGN
|
---|
[41] | 70 | Char_IsUpperCaseLetterInAL:
|
---|
| 71 | IS_BETWEEN_IMMEDIATES al, 'A', 'Z'
|
---|
| 72 | ret
|
---|
[162] | 73 | %endif
|
---|
[41] | 74 |
|
---|
| 75 | ;--------------------------------------------------------------------
|
---|
| 76 | ; Char_IsHexadecimalDigitInAL
|
---|
| 77 | ; Parameters:
|
---|
| 78 | ; AL: Character to check
|
---|
| 79 | ; Returns:
|
---|
| 80 | ; AL: Character converted to lower case
|
---|
| 81 | ; CF: Set if character is decimal digit ('0'...'F')
|
---|
| 82 | ; Cleared if character is not decimal digit
|
---|
| 83 | ; Corrupts registers:
|
---|
| 84 | ; Nothing
|
---|
| 85 | ;--------------------------------------------------------------------
|
---|
[162] | 86 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
[369] | 87 | ALIGN STRING_JUMP_ALIGN
|
---|
[41] | 88 | Char_IsHexadecimalDigitInAL:
|
---|
| 89 | call Char_IsDecimalDigitInAL
|
---|
| 90 | jc SHORT Char_CharIsValid
|
---|
| 91 | call Char_ALtoLowerCaseLetter
|
---|
| 92 | IS_BETWEEN_IMMEDIATES al, 'a', 'f'
|
---|
| 93 | ret
|
---|
[162] | 94 | %endif
|
---|
[41] | 95 |
|
---|
| 96 | ;--------------------------------------------------------------------
|
---|
| 97 | ; Char_IsDecimalDigitInAL
|
---|
| 98 | ; Parameters:
|
---|
| 99 | ; AL: Character to check
|
---|
| 100 | ; Returns:
|
---|
| 101 | ; CF: Set if character is decimal digit ('0'...'9')
|
---|
| 102 | ; Cleared if character is not decimal digit
|
---|
| 103 | ; Corrupts registers:
|
---|
| 104 | ; Nothing
|
---|
| 105 | ;--------------------------------------------------------------------
|
---|
[201] | 106 | %ifndef MODULE_STRINGS_COMPRESSED
|
---|
[369] | 107 | ALIGN STRING_JUMP_ALIGN
|
---|
[41] | 108 | Char_IsDecimalDigitInAL:
|
---|
| 109 | IS_BETWEEN_IMMEDIATES al, '0', '9'
|
---|
| 110 | ret
|
---|
[194] | 111 | %endif
|
---|
[41] | 112 |
|
---|
| 113 | ;--------------------------------------------------------------------
|
---|
| 114 | ; Char_ConvertIntegerToALfromDigitInALwithBaseInBX
|
---|
| 115 | ; Parameters:
|
---|
| 116 | ; AL: Character to convert
|
---|
| 117 | ; BX: Numeric base (10 or 16)
|
---|
| 118 | ; Returns:
|
---|
| 119 | ; AL: Character converted to integer
|
---|
| 120 | ; CF: Set if character was valid
|
---|
| 121 | ; Cleared if character was invalid
|
---|
| 122 | ; Corrupts registers:
|
---|
| 123 | ; Nothing
|
---|
| 124 | ;--------------------------------------------------------------------
|
---|
[162] | 125 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
[369] | 126 | ALIGN STRING_JUMP_ALIGN
|
---|
[41] | 127 | Char_ConvertIntegerToALfromDigitInALwithBaseInBX:
|
---|
| 128 | push dx
|
---|
| 129 | call Char_GetFilterFunctionToDXforNumericBaseInBX
|
---|
| 130 | call dx ; Converts to lower case
|
---|
| 131 | pop dx
|
---|
[162] | 132 | jnc SHORT Char_CharIsNotValid
|
---|
[41] | 133 |
|
---|
| 134 | cmp al, '9' ; Decimal digit
|
---|
| 135 | jbe SHORT .ConvertToDecimalDigit
|
---|
[145] | 136 | sub al, 'a'-'0'-10 ; Convert to hexadecimal integer
|
---|
[369] | 137 | ALIGN STRING_JUMP_ALIGN
|
---|
[41] | 138 | .ConvertToDecimalDigit:
|
---|
| 139 | sub al, '0' ; Convert to decimal integer
|
---|
[162] | 140 | ; Fall to Char_CharIsValid
|
---|
| 141 | %endif
|
---|
[41] | 142 |
|
---|
| 143 | ;--------------------------------------------------------------------
|
---|
[162] | 144 | ; Char_CharIsValid
|
---|
| 145 | ; Char_CharIsNotValid
|
---|
[41] | 146 | ; Parameters:
|
---|
| 147 | ; Nothing
|
---|
| 148 | ; Returns:
|
---|
[162] | 149 | ; CF: Set for Char_CharIsValid
|
---|
| 150 | ; Cleared for Char_CharIsNotValid
|
---|
[41] | 151 | ; Corrupts registers:
|
---|
| 152 | ; Nothing
|
---|
| 153 | ;--------------------------------------------------------------------
|
---|
[162] | 154 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
[369] | 155 | ALIGN STRING_JUMP_ALIGN
|
---|
[41] | 156 | Char_CharIsValid:
|
---|
| 157 | stc
|
---|
| 158 | ret
|
---|
[162] | 159 | %endif
|
---|
[41] | 160 |
|
---|
[369] | 161 | ALIGN STRING_JUMP_ALIGN
|
---|
[162] | 162 | Char_CharIsNotValid:
|
---|
[41] | 163 | clc
|
---|
| 164 | ret
|
---|
| 165 |
|
---|
| 166 |
|
---|
| 167 | ;--------------------------------------------------------------------
|
---|
| 168 | ; Char_ALtoLowerCaseLetter
|
---|
| 169 | ; Parameters:
|
---|
| 170 | ; AL: Character to convert
|
---|
| 171 | ; Returns:
|
---|
| 172 | ; AL: Character with possible conversion
|
---|
| 173 | ; Corrupts registers:
|
---|
| 174 | ; Nothing
|
---|
| 175 | ;--------------------------------------------------------------------
|
---|
[162] | 176 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
[369] | 177 | ALIGN STRING_JUMP_ALIGN
|
---|
[41] | 178 | Char_ALtoLowerCaseLetter:
|
---|
| 179 | call Char_IsUpperCaseLetterInAL ; Is upper case character?
|
---|
[181] | 180 | jmp SHORT Char_ALtoUpperCaseLetter.CheckCF
|
---|
[162] | 181 | %endif
|
---|
[41] | 182 |
|
---|
| 183 | ;--------------------------------------------------------------------
|
---|
| 184 | ; Char_ALtoUpperCaseLetter
|
---|
| 185 | ; Parameters:
|
---|
| 186 | ; AL: Character to convert
|
---|
| 187 | ; Returns:
|
---|
| 188 | ; AL: Character with possible conversion
|
---|
| 189 | ; Corrupts registers:
|
---|
| 190 | ; Nothing
|
---|
| 191 | ;--------------------------------------------------------------------
|
---|
[369] | 192 | ALIGN STRING_JUMP_ALIGN
|
---|
[41] | 193 | Char_ALtoUpperCaseLetter:
|
---|
| 194 | call Char_IsLowerCaseLetterInAL ; Is lower case character?
|
---|
[181] | 195 | .CheckCF:
|
---|
| 196 | jnc SHORT Char_ChangeCaseInAL.Return
|
---|
| 197 | ; Fall to Char_ChangeCaseInAL
|
---|
| 198 |
|
---|
| 199 | ;--------------------------------------------------------------------
|
---|
| 200 | ; Char_ChangeCaseInAL
|
---|
| 201 | ; Parameters:
|
---|
| 202 | ; AL: Character to convert (must be A-Z or a-z)
|
---|
| 203 | ; Returns:
|
---|
| 204 | ; AL: Character converted
|
---|
| 205 | ; Corrupts registers:
|
---|
| 206 | ; Nothing
|
---|
| 207 | ;--------------------------------------------------------------------
|
---|
| 208 | Char_ChangeCaseInAL:
|
---|
| 209 | xor al, 32
|
---|
[41] | 210 | .Return:
|
---|
| 211 | ret
|
---|
| 212 |
|
---|
| 213 | ;--------------------------------------------------------------------
|
---|
| 214 | ; Char_GetFilterFunctionToDXforNumericBaseInBX
|
---|
| 215 | ; Parameters
|
---|
| 216 | ; BX: Numeric base (10 or 16)
|
---|
| 217 | ; Returns:
|
---|
| 218 | ; CS:DX: Ptr to character filter function
|
---|
| 219 | ; Corrupts registers:
|
---|
| 220 | ; Nothing
|
---|
| 221 | ;--------------------------------------------------------------------
|
---|
[162] | 222 | %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
[369] | 223 | ALIGN STRING_JUMP_ALIGN
|
---|
[41] | 224 | Char_GetFilterFunctionToDXforNumericBaseInBX:
|
---|
| 225 | mov dx, Char_IsDecimalDigitInAL
|
---|
| 226 | cmp bl, 10
|
---|
| 227 | je SHORT .Return
|
---|
[162] | 228 | mov dx, Char_IsHexadecimalDigitInAL
|
---|
[41] | 229 | .Return:
|
---|
| 230 | ret
|
---|
[162] | 231 | %endif
|
---|