0

我昨天真的开始学习 MASM32,如果这是一个愚蠢的问题,请耐心等待。

我对addrandoffset的理解如下:两者都返回变量的内存地址,但offset仅适用于全局变量(其内存地址在汇编时知道),并且addr适用于全局变量和局部变量。我知道高级语言中的全局变量和局部变量是什么;我的理解是,在.data.data?.const块中声明的变量是全局的,而local在过程中用关键字声明的变量是局部的。

我的整个代码是:

.386
.model flat, stdcall
option casemap:none

include \masm32\include\windows.inc
include \masm32\include\user32.inc
includelib \masm32\lib\user32.lib
include \masm32\include\kernel32.inc
includelib \masm32\lib\kernel32.lib

.data

szCap db "Hello", 0                   ;caption for the MessageBox
szMsg db "Hello, world!", 0           ;text for the MessageBox

.code

;Procedure for creating a MessaheBox with NULL parent and variable text
TestProcedure proc msg:dword, cap:dword     
    invoke MessageBox, NULL, msg, cap, MB_OK
    ret
TestProcedure endp

main:
    ; error on these lines
    push addr szCap ; C:\masm32\My files\HelloWorld.asm(35) : error A2008: syntax error : addr
    push addr szMsg ; C:\masm32\My files\HelloWorld.asm(36) : error A2008: syntax error : addr

    call TestProcedure

    invoke ExitProcess, 0
end main

但是,如果我更改addroffset,则代码可以完美运行。为什么addr在这种情况下无法组装?

4

1 回答 1

1

在平面模式下,所有地址都是偏移量。

ADDR 运算符是在相当新的 MASM 版本中添加的,据我所知,它仅与 INVOKE 关键字一起使用。在 INVOKE 中,ADDR 与全局标识符的偏移量相同,但也可以计算本地基于堆栈的变量的相对地址(它通常会发出 LEA 指令)。

于 2013-03-05T21:09:51.493 回答