I'm trying to learn assembly for x86_64 and the only problem for now is with the VGA graphics. It tells me "Segmentation fault (core dumped) ".
the loop func is to freeze the code.
I've tried a lot of tutorials in the WEB, but none of them helped me.
mov ax, 0x0a000
mov es, ax
mov ah, 00H
mov al, 13H
int 10H
mov ah, 0ch
mov al, 03h
mov cx, 70
mov dx, 70
mov bh, 1
int 10h
jmp _loop
I expected to draw a pixel.