Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
FirstProgramGroupLab_aNavaid_lCannon_tAmjad
;nasm global _start section .data message: db 'Hello',10,'world!',10 ; 'Hello world!' plus a linefeed character message1: db 'This is Group 5',10,'nice to meet you!',10 section .text _start: mov rax,1 ; The system call for write mov rdi,1 ; argument #1 in rdi, where to write mov rsi, message ; argument #2 in rsi: where does the string start mov rdx,14 ; argument #3 in rdx: how many bytes to write syscall ; this instruction invokes a system call mov rax,1 ; The system call for write mov rdi,1 ; argument #1 in rdi, where to write mov rsi, message1 ; argument #2 in rsi: where does the string start mov rdx,35 ; argument #3 in rdx: how many bytes to write syscall ; this instruction invokes a system call mov rax,60 xor rdi,rdi syscall
run
|
edit
|
history
|
help
0
intfunct_64
dfsfdafds
dsfaddafs
sdaffdssadfsfd
fdsafsfsdfs
hello.asm (Matthew Harris)
index2
fdsfdsafasd
lec4bb
lecture6-1