Getting the error: “Instruction references undefined symbol … main” in QTSpim

删除回忆录丶 提交于 2019-11-27 16:29:36

The default startup code expects your program to have a global label main as its entry point. So you need to add one, e.g.:

# (as before)
.text
.globl main
main:
# (as before)
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!