0s
0 WPM
100%
0

Assembly Basics

assemblyBEGINNER
section .data msg db 'Hello World', 0xa len equ $ - msg section .text global _start _start: mov edx, len mov ecx, msg mov ebx, 1 mov eax, 4 int 0x80 mov eax, 1 int 0x80
section .data msg db 'Hello World', 0xa len equ $ - msg section .text global _start _start: mov edx, len mov ecx, msg mov ebx, 1 mov eax, 4 int 0x80 mov eax, 1 int 0x80
Ketik sintaks di atas untuk memulai latihan...