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.
作为我班级的作业,我必须在汇编程序中实现一个代码,允许为我们正在模拟的 arm7 处理器跳跃特定距离。我的问题是,我们如何在代码中指定要跳转的距离?
我目前有这个代码:
main : mov r1, #5 add r0, r2, r3 b test mov r1, #5 test : add r0, r2, r3 mov r1, #5
我的目标是能够跳几位,看看我的模拟是否看到有跳跃,并且她正确计算了跳跃距离
预先感谢您的任何帮助