1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706
|
; asmsyntax=nasm
;
; utils.asm
;
; Some utility functions
;
; Copyright (C) 2000, Suzhe. See file COPYING for details.
;
%ifndef HAVE_UTILS
%define HAVE_UTILS
;=============================================================================
;itoa ---- convert integer to ascii string (the string is zero ending)
;input:
; ax = the integer to be converted
; cl = max length of the integer
; es:di -> buffer
;output:
; none
;=============================================================================
itoa:
pusha
xor ch, ch
add di, cx
mov byte [di], 0
mov bx, 10
.loop_itoa:
xor dx, dx
dec di
div bx
add dl, '0'
mov [di], dl
dec cx
or ax, ax
jz .end_itoa
or cx, cx
jnz .loop_itoa
.end_itoa:
or cx, cx
jz .end
.loop_fillspace:
dec di
mov byte [di], ' '
loop .loop_fillspace
.end:
popa
ret
;=============================================================================
;atoi ---- convert ascii string to integer (the string is zero ending)
;input:
; ds:si -> buffer
;output:
; ax = convert result ( <= 65535 )
;=============================================================================
atoi:
push bx
push cx
xor bx, bx
xor ax, ax
.loop_conv:
lodsb
or al, al
jz .end
sub al, '0'
cmp al, 10
jae .end
mov cx, bx
shl bx, 3 ; bx = bx * 10
shl cx, 1 ;
add bx, cx ;
add bx, ax
jmp short .loop_conv
.end:
mov ax, bx
dec si
pop cx
pop bx
ret
;=============================================================================
;strlen ---- Count Length of a zero ending string
;input:
; ds:si -> string
;output:
; cx = length (not include the ending zero)
;=============================================================================
strlen:
push ax
xor cx,cx
or si,si
jz .end
push si
cld
.loop_count:
inc cx
lodsb
or al, al
jnz .loop_count
dec cx
pop si
.end:
pop ax
ret
;=============================================================================
;strlen_hl ---- Count Length of a zero ending string (ignore ~ chars)
;input:
; ds:si -> string
;output:
; cx = length (not include the ending zero)
;=============================================================================
strlen_hl:
push ax
xor cx,cx
or si,si
jz .end
push si
cld
.loop_count:
inc cx
.loop_nocount:
lodsb
cmp al, '~'
je .loop_nocount
or al, al
jnz .loop_count
dec cx
pop si
.end:
pop ax
ret
;=============================================================================
;strchr ---- search a char in a string
;input:
; al = the char to be searched
; cx = length of the string
; es:di -> string
;output:
; cf = 0 the char was found
; cx = offset of the char
; cf = 1 the char was not found
; cx = length of the string
;=============================================================================
strchr:
push bx
push di
mov bx,cx
cld
repnz scasb
pop di
xchg bx, cx
jnz .not_found
sub cx, bx
dec cx
pop bx
clc
ret
.not_found:
pop bx
stc
ret
;=============================================================================
;strncpy ---- copy strings
;input:
; cx = max number of chars to be copied
; ds:si -> source string
; es:di -> dest string
;output:
; cx = number of chars actually copied (not include the ending zero char)
; es:di -> point to next char of the end of dest string and set it to
; zero
;=============================================================================
strncpy:
push si
push ax
push bx
mov bx, cx
cld
.loop_copy:
lodsb
stosb
or al, al
jz .end
loop .loop_copy
xor al, al
stosb
.end:
dec di
xchg bx, cx
sub cx, bx
pop bx
pop ax
pop si
ret
;=============================================================================
;strcpy ---- copy strings
;input:
; ds:si -> source string
; es:di -> dest string
;output:
; es:di -> point to next char of the end of dest string and set it to
; zero
;=============================================================================
strcpy:
push si
push ax
cld
.loop_copy:
lodsb
stosb
or al, al
jnz .loop_copy
dec di
pop ax
pop si
ret
;=============================================================================
;calc_password ---- calculate the password
;input:
; ds:si -> the pasword string (zero ending)
; cx = max length of the password
;output:
; dx:ax = the encrypted password (32 bits)
;=============================================================================
calc_password:
push si
xor edx, edx
xor eax, eax
cld
.loop_calc:
lodsb
or al, al
jz .end
not al
rol al, 4
add edx, eax
rol edx, 2
loop .loop_calc
.end:
mov ax, dx
ror edx, 16
pop si
ret
;=============================================================================
;htoa ---- hex to ascii
;input:
; ax = hex number
; cl = length of hex number (1 to 4)
; es:di -> buffer to store ascii string
;output:
; es:di -> ascii string
;=============================================================================
htoa:
pusha
xor ch, ch
add di, cx
mov byte [di], 0
.loop_conv:
push ax ;Save AX
and al,0Fh ;Keep 4 bits
cmp al,0Ah ;Compute the hex digit,
sbb al,69h ;using Improved Allison's Algorithm
das
dec di
mov [di], al
pop ax ;Restore AX
shr ax,4 ;Shift it over
loop .loop_conv
popa
ret
;=============================================================================
;atoh ---- ascii to hex
;input:
; ds:si -> buffer
;output:
; ax = hex
; ds:si -> end of the hex number
;=============================================================================
atoh:
push bx
xor bx, bx
xor ax, ax
.loop_conv:
lodsb
or al, al
jz .end
sub al, '0'
cmp al, 10
jb .ok
sub al, 'A'-'0'-10
cmp al, 16
jb .ok
sub al, 'a'-'A'
cmp al, 16
jae .end
.ok:
shl bx, 4
add bx, ax
jmp .loop_conv
.end:
dec si
mov ax, bx
pop bx
ret
;=============================================================================
;count_lines ---- count how many lines in a string.
;input:
; ds:si -> string
;output:
; ch = number of lines
; cl = max line length
;=============================================================================
count_lines:
push si
push bx
push ax
cld
xor cx, cx
xor bx, bx
or si, si
jz .end
inc ch
.loop_count:
lodsb
or al, al
jz .ending
cmp al, 0x0d
je .new_line
inc bl
jmp short .loop_count
.new_line:
inc ch
mov bh, bl
xor bl, bl
cmp bh, cl
jbe .loop_count
mov cl, bh
jmp short .loop_count
.ending:
cmp bl, cl
jbe .end
mov cl, bl
.end:
pop ax
pop bx
pop si
ret
;=============================================================================
; power_off ---- turn the power off
;input:
; none
;output:
; never return if successful.
; cf = 1 on error.
;=============================================================================
power_off:
pusha
call check_apm_bios
jc .end
mov ax, 0x5301
xor bx, bx
int 0x15
jc .end
mov ax, 0x5380
mov bh, 0x8c
int 0x15
mov ax, 0x40
mov bx, 0xd8
push ds
mov ds, ax
or byte [ds:bx], 0x10
pop ds
mov ax, 0x5307
mov bx, 1
mov cx, 3
int 0x15
.end:
popa
ret
;=============================================================================
; check_apm_bios ---- check if the apm bios present
; output:
; cf = 1 error, cf = 0 ok
;=============================================================================
check_apm_bios:
pusha
mov ax, 0x5300
xor bx, bx
int 0x15 ; check if apm present
jc .end
cmp bx, 0x504D
jnz .none
test cx, 1
jnz .end
.none:
stc
.end:
popa
ret
%if 1
;=============================================================================
; leap_year ---- check if a year is leap a year
; input:
; ax = year
; output:
; cf = 1, it's a leap year
; cf = 0, not a leap year
;=============================================================================
leap_year:
pusha
mov cx, 400
xor dx, dx
push ax
div cx
pop ax
or dx, dx
jz .isleap
mov cx, 100
xor dx, dx
push ax
div cx
pop ax
or dx, dx
jz .noleap
xor dx, dx
mov cx, 4
div cx
or dx, dx
jz .isleap
.noleap:
clc
popa
ret
.isleap:
stc
popa
ret
;=============================================================================
; day_in_week
; input:
; ax = year
; dh = month
; dl = day
; output:
; cx = day in week
;=============================================================================
day_in_week:
push ax
push bx
push dx
push dx
dec ax
mov cx, ax
xor dx, dx
push ax
mov bx, 4
div bx
add cx, ax
pop ax
xor dx, dx
push ax
mov bx, 100
div bx
sub cx, ax
pop ax
xor dx, dx
push ax
mov bx, 400
div bx
add cx, ax
pop ax
inc ax
pop dx
movzx bx, dh
mov bl, [days_in_month_norm-1+bx]
add cx, bx
call leap_year
jnc .norm
cmp dh, 3
jb .norm
inc cx
.norm:
xor dh, dh
add cx, dx
mov ax, cx
xor dx, dx
mov cx, 7
div cx
mov cx, dx
pop dx
pop bx
pop ax
ret
days_in_month_norm db 0, 3, 3, 6, 1, 4, 6, 2, 5, 0, 3, 5
%endif
;=============================================================================
; bcd_to_bin ---- convert bcd to binary
; input: ax = bcd number
; output: ax = binary number
;=============================================================================
bcd_to_bin:
push bx
push cx
push dx
push si
lea si, [.mul_num]
mov cx, 4
xor bx, bx
.loop_conv:
push ax
and ax, 0x000f
mov dx, [si]
mul dx
add bx, ax
pop ax
shr ax, 4
inc si
inc si
loop .loop_conv
mov ax, bx
pop si
pop dx
pop cx
pop bx
ret
.mul_num dw 1, 10, 100, 1000
;=============================================================================
; bcd_to_str ---- convert bcd to string
; input: ax = bcd number
; cl = length (0 to 4)
; es:di -> buffer
; output: none
;=============================================================================
bcd_to_str:
pusha
push cx
mov bx, ax
mov al, 4
mul cl
mov cl, al
ror bx, cl
pop cx
.loop_conv:
or cl, cl
jz .end
rol bx, 4
mov ax, bx
and al, 0x0f
add al, '0'
stosb
dec cl
jmp .loop_conv
.end:
xor al, al
stosb
popa
ret
;=============================================================================
; reboot ---- reboot the computer
; input:
; none
;=============================================================================
reboot:
mov bx, 0x40
push bx
pop ds
mov ax, 0x1234
mov [0x0072], ax
jmp 0xFFFF:0x0000
;=============================================================================
; bioskey ---- BIOS keyboard func
;=============================================================================
bioskey:
mov byte [tmp_kbd_work], 0
or ah, ah
je .post_trans
cmp ah, 0x01
je .post_trans
cmp ah, 0x10
je .post_trans
cmp ah, 0x11
jne .call_int16
.post_trans:
inc byte [tmp_kbd_work]
.call_int16:
int 0x16
pushf
cmp byte [tmp_kbd_work], 0
jz .end
push cx
push si
mov cx, [keymap.number]
mov si, [keymap.data]
or cx, cx
jz .end_trans
.loop_trans:
cmp ax, [si]
jne .loop_next
mov ax, [si+2]
jmp short .end_trans
.loop_next:
add si, 4
loop .loop_trans
.end_trans:
pop si
pop cx
.end:
popf
ret
%ifndef MAIN
keymap:
.number dw 0
.data dw 0
section .bss
%include "tempdata.asm"
%endif
%endif ;End of HAVE_UTILS
|