summaryrefslogtreecommitdiffstats
path: root/yotlibc/char_in.s
blob: 03fb29d23445f074541fcd2308910798929aca63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
global _getch
global getch

_getch:
    push    bp
    mov     bp, sp
    mov     ah, 0x0
    int     0x16
    mov     sp, bp
    pop     bp
    ret