Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
writeChar:
mov ah, 0x0A
mov bh, 0x00
mov cx, 1
int 0x10
ret
before i call the function i put the value for ascii A into al then i call it but it doesnt do anything, when i copy the code inplace of the call it work just fine, what could be causing this