我对组装完全陌生,现在我正在使用 X86 组装。我正在使用 NASM,现在我的代码没有编译。我从一本书中得到它,基本上代码适用于字符串:
; This program demonstrates the string-handling procedures in
; the book's link library.
INCLUDE Irvine32.inc
.data
string_1 BYTE "abcde////",0
string_2 BYTE "ABCDE",0
msg0 BYTE "string_1 in upper case: ",0
msg1 BYTE "string1 and string2 are equal",0
msg2 BYTE "string_1 is less than string_2",0
msg3 BYTE "string_2 is less than string_1",0
msg4 BYTE "Length of string_2 is ",0
msg5 BYTE "string_1 after trimming: ",0
.code
main PROC
call trim_string
call upper_case
call compare_strings
call print_length
exit
main ENDP
trim_string PROC
; Remove trailing characters from string_1.
INVOKE Str_trim, ADDR string_1, '/'
mov edx,OFFSET msg5
call WriteString
mov edx,OFFSET string_1
call WriteString
call Crlf
ret
trim_string ENDP
upper_case PROC
; Convert string_1 to upper case.
mov edx,OFFSET msg0
call WriteString
INVOKE Str_ucase, ADDR string_1
mov edx,OFFSET string_1
call WriteString
call Crlf
ret
upper_case ENDP
compare_strings PROC
; Compare string_1 to string_2.
INVOKE Str_compare, ADDR string_1, ADDR string_2
.IF ZERO?
mov edx,OFFSET msg1
.ELSEIF CARRY?
mov edx,OFFSET msg2 ; string 1 is less than...
.ELSE
mov edx,OFFSET msg3 ; string 2 is less than...
.ENDIF
call WriteString
call Crlf
ret
compare_strings ENDP
print_length PROC
; Display the length of string_2.
mov edx,OFFSET msg4
call WriteString
INVOKE Str_length, ADDR string_2
call WriteDec
call Crlf
ret
print_leng
th ENDP
END main
就像我说我正在使用 NASM 所以这可能是问题但它应该仍然可以工作,但是当我使用它编译它时nasm -f win32 other.asm -o other.o
它会出现大量错误,其中大部分是预期的解析器指令。我使用的是 Windows 8 64 位,但它没有理由不能运行 32 位程序 - 如果我错了,请纠正我。MASM 编译器的问题在于它说我需要精确的 Visual C++ Express 2005 (PRECISELY 2005) 才能下载,否则它不会下载。我怎样才能让这个程序与我将来可能编写的其他程序一起工作 - 我确实记得将 nasm 汇编器放入我的 C 编译器的 bin 文件中。就像我说的我很新,不管你信不信,这本书实际上并没有告诉你如何运行这个程序。还有一种方法可以在没有 VS 2005(我似乎无论如何都找不到)或任何 VS 的情况下下载 masm
其他程序(在 ASM 中)似乎也没有在它上面运行。我很确定这是 Windows 版本,否则一开始就不会下载。