本文介绍了C ++ visual studio内联汇编如何调用地址的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我遇到的问题是我正在尝试在Inline Asm中执行以下操作 asd是地址 调用asd 在十六进制编辑器中查看时,它会写入call dword ptr asd 我很遗失 我尝试了什么: 到目前为止我在内联装配中尝试过使用两件东西 呼叫偏移量asd 打电话给asd 两个都没有工作,我错过了什么,我无法弄清楚如何去做这个The problem that i'm having is that I'm trying to do the following in Inline Asmasd is the address"call asd"When viewing it in a hex editor it writes "call dword ptr asd"I'm quite lostWhat I have tried:I've tried using two things so far in the inline assembly"call offset asd""call asd"Neither work, I'm missing something and I cant figure out how to go about this推荐答案 ?DoFunctionTest@@YAXXZ PROC; DoFunctionTest; 237 : { 这篇关于C ++ visual studio内联汇编如何调用地址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-23 01:04