summaryrefslogtreecommitdiffstats
path: root/basic.s
blob: 5f14ecb42f4b7727151531c2b8e80ee147f89699 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
putcharhex:         ; bl=argument
    pusha
    mov     ah, 0x0e
    mov     al, bl
    and     al, 0xf0
    shr     al, 4
    call    fourbit2hex
    int     0x10
    mov     al, bl
    and     al, 0x0f
    call    fourbit2hex
    int     0x10
    popa
    ret
fourbit2hex:        ; al=argument=result
    cmp     al, 10
    jae     fourbit2hex_alpha
    add     al, '0'
    ret
fourbit2hex_alpha:
    add     al, 'A'
    sub     al, 10
    ret