always hard
Открыть в Steam
Steam ID
Steam2
Steam3
Steam64
Информация
- Дата регистрации
- 11.04.2012
- Страна
- BR
- О себе
- global _start
section .text
_start:
mov eax, 0x4 ; use the write syscall
mov ebx, 1 ; use stdout as the file descriptor
mov ecx, message ; user the message as the buffer
mov edx, message_length ; supply the length
int 0x80 ; invoke syscall
; now gracefully exit
mov eax, 0x1
mov ebx, 0
int 0x80
section .data:
message: db "Hello world!", 0xA
message_length equ $-messageNo information given.No information given.