second sem
an anonymous user
·
Assembly
·

section .data msg db "hello world!" section .text global _start _start: mov rax,1 ;1-sys write 0-sys read mov rdi,1 ;1-o/p device 0-i/p device mov rsi,msg ;msg needs to be print mov rdx,12 ;length of msg syscall ;grab the attention of the processor mov rax,60 ;1-sys_exit mov rdi,0 ;return 0 syscall
Click on the Run button to get started.
The code/input has changed since you last clicked on Run. Click it
again to see the updated changes.
Comments