jankos/fb.s

11 lines
174 B
ArmAsm

; Helpers for frame buffer which pretty much have to to be
; written in asm
global fb_cursor_control
fb_cursor_control:
mov al, [esp+8]
mov dx, [esp+4]
out dx, al
ret