Does anyone know how I can convert the following code so I can Assemble it using MASM
mov ax, 0x13
int 10h
The above is changing the screen mode but if I add a syscall function I get a Segmentation Fault 11 i am not sure which call i should be using:
mov rax, 0x2000004
exit
mov rax, 0x2000001
Once i change the screen mode I want to write to the screen a single pixel to the screen
mov ax, 0x13
int 10h
The above is changing the screen mode but if I add a syscall function I get a Segmentation Fault 11 i am not sure which call i should be using:
mov rax, 0x2000004
exit
mov rax, 0x2000001
Once i change the screen mode I want to write to the screen a single pixel to the screen