我对Assembly完全不熟悉,现在我正在使用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的情况下下载masm(我似乎无法找到它)或任何VS for the metter
其他程序(在ASM中)似乎也没有运行。我很确定这是Windows版本,否则它不会下载开始。
答案 0 :(得分:2)
为什么我的装配程序不起作用?
因为您正在尝试使用NASM编译MASM语法中的汇编程序代码。
选项1:获取MASM
不要试图将MASM代码放入NASM
这不起作用,因为每个汇编程序都有自己的语法
(是的,我同意这搞砸了)。
根据@ Frank的建议,下载masm:http://www.masm32.com/masmdl.htm
请注意,SDK(软件开发工具包)是编译代码所需的所有工具的实际内容
masm
安装程序通过重新编译来重建开发工具。这有点不寻常,但确实可以确保编译代码所需的所有工具都存在且有效。
选项2:使用NASM源代码示例
请参阅:https://www.google.co.za/search?q=sample+nasm+programs&ie=utf-8&oe=utf-8&rls=org.mozilla:nl:official&client=firefox-a&gws_rd=cr&ei=uPNgUp-wBIqihgf45oDwCQ
选项3:了解MASM和NASM之间的差异
The nasm
manual有一节介绍与masm
:http://www.nasm.us/doc/nasmdoc2.html#section-2.2的差异
这可能也会有所帮助:http://left404.com/2011/01/04/converting-x86-assembly-from-masm-to-nasm-3/
选项4:获取自动翻译
幸运的是,有自动翻译器将MASM代码转换为NASM
这是一个:http://www.devoresoftware.com/nomyso/
请注意,此特定需要perl。
答案 1 :(得分:0)
使用以下代码:
; String Library Demo (StringDemo.asm)
; 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_length ENDP
END main