如何在Linux 32位x86程序集(NASM语法)中显示文本文件的内容?
提前致谢,
答案 0 :(得分:6)
我没有对此进行测试(并且它不一定是NASM语法),但这些内容应该适用于x86 Linux机器:
; Open file
mov ecx,0 ; FILEMODE_R
mov ebx,filePath
mov edx,01FFh
mov eax,5 ;__NR_open
int 80h ; syscall
mov fileHandle,eax
...
; Read file data
mov ebx,fileHandle
mov ecx,buffer
mov edx,numBytesToRead
mov eax,3 ; __NR_read
int 80h
; Write to STDOUT
mov edx,numCharsToWrite
mov ecx,buffer
mov ebx,1 ; STDOUT
mov eax,4 ; __NR_write
int 80h
; Repeat as many times as necessary
; Close file
mov ebx,fileHandle
mov eax,6 ; __NR_close
int 80h
答案 1 :(得分:0)
在终端中使用此功能,例如 ./ [程序名称]&gt; destination.txt&lt; source.txt ,source是要复制的任何文件....这将逐字节复制..如果你没有指定目标文件,这个程序将把你文件的内容显示给终端,< em> ie [节目名称]&lt; source.txt ...
SECTION .bss
fileBuf: resb 1
SECTION .data
SECTION .text
global _start
_start:
nop
read: mov eax, 3 ; sys_read
mov ebx, 0 ; standard input
mov ecx, fileBuf
mov edx, 1
int 80h
cmp eax, 0 ; ensure havn't read eof
je exit
write:mov eax, 4 ; sys_write
mov ebx, 1 ; standard output
mov ecx, fileBuf
mov edx, 1
int 80h
jmp read
exit: mov eax, 1 ; wrap it up
mov ebx, 0
int 80h