使用“db”、“dw”;在 MVC 中++汇编器添加
我应该使用什么来代替
__asm
{
db 0EAh
dw 0000h
dw 0FFFFh
}
( http://msdn.microsoft.com/en- us/library/h70hd396.aspx )
在 MVC++ 中?
What should I use instead of
__asm
{
db 0EAh
dw 0000h
dw 0FFFFh
}
( http://msdn.microsoft.com/en-us/library/h70hd396.aspx )
in MVC++?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
感谢@gusbro的评论,我终于明白你想要做什么。我不确定这是否有效,因为我没有 Windows 机器来测试它,但你应该尝试一下。
Thanks to @gusbro's comment I finally understand what you are trying to do. I'm not sure if this will work since I don't have a windows machine to test this, but you should give it a try.
您可以使用以下内在函数发出操作码:
__emit(int opcode)
您也许可以通过顺序发出操作码来执行代码。
但是,我不认为你会成功地以这种方式重新启动你的机器......
You can emit opcodes with this intrinsic function :
__emit(int opcode)
You might be able to execute your code by secuentially emmiting the opcodes.
However, I don't think you will succeed in rebooting your machine this way...