Test Post
Hello !
My name is Celica!
This is a test post.
This is a picture
This is my code
Hello World Program
My name is Celica!
This is a test post.
![]() | |
| App isn't available |
This is my code
global _start
section .text
_start:
mov rax, 1 ; write(
mov rdi, 1 ; STDOUT_FILENO,
mov rsi, msg ; "Hello, world!\n",
mov rdx, msglen ; sizeof("Hello, world!\n")
syscall ; );
mov rax, 60 ; exit(
mov rdi, 0 ; EXIT_SUCCESS
syscall ; );
section .rodata
msg: db "Hello, world!", 10
msglen: equ $ - msg
![]() | |
| VS Code |



No comments :
Post a Comment