HALT B HALT
发布网友
发布时间:2022-04-22 09:42
我来回答
共1个回答
热心网友
时间:2023-10-30 14:09
halt:
b halt
The final instruction, B, always branches back to
the named instruction. In this program, the instruction names itself,
effectively halting the program by putting the computer into a tight
infinite loop.
大致意思就是:先设置一个halt的段标,b是个伪指令表示back to,这里就是回到halt段标处执行,也就相当于c语言的while(1),无限死循环。