beq.s

来自「SimpleScaler(RISC处理器仿真分析程序)指令集相对应的汇编」· S 代码 · 共 24 行

S
24
字号
# Source file used to test the beq macro.	text_label:		beq	$4,$5,text_label	beq	$4,0,text_label	beq	$4,1,text_label	beq	$4,0x8000,text_label	beq	$4,-0x8000,text_label	beq	$4,0x10000,text_label	beq	$4,0x1a5a5,text_label# bne is handled by the same code as beq.  Just sanity check.	bne	$4,0,text_label# Sanity check beql and bnel	.set	mips2	beql	$4,0,text_label	bnel	$4,0,text_label# Test that branches which overflow are converted to jumps.	.space	0x20000	b	text_label	bal	text_label

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?