main.asm
an anonymous user
·
Assembly
·

SECTION .data extern printf global main fmt: db "%d", 10, 0 SECTION .text main: mov eax, 14 mov ebx, 10 add eax, ebx push eax push fmt call printf mov eax, 1 int 0x80
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