无法运行 dos MBR
伙计们。我从c盘读取MBR到内存,例如0:0200H,然后我调试它。但是,当我到达时 0:7c18H 雷普兹 0:7c19H MOVSB 我收到一条消息“CPU 错误:操作码不正确。正在终止进程。” 我不知道该如何处理。 任何帮助将不胜感激。谢谢。
guys.I read MBR from c disk to a memory such as 0:0200H,and then i debug it.however,when i arrive
0:7c18H REPZ
0:7c19H MOVSB
i get a message 'CPU error:incorrect opcode.Killing process.'
i dont know how to deal with it.
any help will be appreciated.thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
REPZ MOVSB 是典型的字符串移动操作。您的 MBR 可能会读取它期望位于内存中的字符串,从而导致其失败。
REPZ MOVSB is a string move operation typically. Your MBR is likely looking to read a string it expects to be in memory causing it to fail.