SEGMENT .data ; nothing here
SEGMENT .text ; sauce
global _start
_start:
pop ECX ; get ARGC value
mov EAX, 4 ; sys_write()
mov EBX, 1 ; /dev/stdout
;^^^^^^^^^^^
mov EDX, 1 ; a single byte
int 0x80
mov EAX, 1 ; sys_exit()
mov EBX, 0 ; return 0
int 0x80
SEGMENT .bss ; nothing here
为什么要使用EB EBX,“”1“”; / dev / stdout? 哪个文件我能找到“1”?
答案 0 :(得分:-1)
在unix系统上,进程通常有3个连接的公共I / O通道,称为stdin / stdout / stderr。它们具有相应的文件描述符值0,1和2.
记录于:http://pubs.opengroup.org/onlinepubs/9699919799/functions/stdin.html(另请参阅wikipedia page)