python print("Hello, world!") ассемблер (nasm x86) section .data
helloworld db 'Hello, world!', 0
section .text
global _start
_start:
mov eax, 4
mov ebx, 1
mov ecx, helloworld
mov edx, 5
int 0x80
mov eax, 1
xor ebx, ebx
int 0x80
helloworld db 'Hello, world!', 0
section .text
global _start
_start:
mov eax, 4
mov ebx, 1
mov ecx, helloworld
mov edx, 5
int 0x80
mov eax, 1
xor ebx, ebx
int 0x80