请随时编辑标题.
我有这个代码:
section .bss buff resb 1 readfromkeyboard: mov eax,3 ;specify system read mov ebx,0 ;specify standard in -> keyboard mov ecx,buff ;where to store what is read mov edx,1 ;read 1 byte int 0x80 ;tell linux to do everything above mov eax,4 ;sys_write mov ebx,1 ;Standard output mov ecx,buff ;what to print mov edx,1 ;how long to print int 0x80 ;tell linux to do everything above
工作正常
当我开始进程时,光标将在终端中开始闪烁,我可以自由输入字符.在这一点上,我可以随意输入我想要的字符,除非我按下“ENTER”,否则将读取1个字节,并将其打印在终端中.
我的问题是,当我输入字符时,当我输入Enter时,内部发生了什么.所以我在键盘上打了’a’,并说’c’,这个数据在这里存储在哪里?他们是否已经在我的代码中由“buff”处理的内存空间?为什么当我点击Enter时,Linux读取?