Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法让 Nasm 告诉你特定标签的地址?例如
; blah blah blah... _routine: ; do some stuff ; blah blah blah
我想知道编译时_routine的地址是什么。换句话说,我个人想知道地址是什么(而不是在程序中访问该值)。
_routine
您应该只能使用标签的名称。NASM 中的标签自动被视为地址。
所以:
mov rax,label_name
应该给你地址。
啊,你可以把这个魔法放在你的源文件中(疯狂的 nasm ......)
[map all myfile.map]