rd-regprefix-1.s
来自「GNU binutils是GNU交叉工具链中的一个源码包」· S 代码 · 共 42 行
S
42 行
; Test (no_)register_prefixes a bit. Register prefix may or may not be; mandated when we get here.start:; Ambiguous. Depends on default. move.d r5,$r5 move r4,$ibr move.d $r4,[r10+1] jsr r10 move.d [r0],$r7; Non-ambiguous, with a prefix. push $srp move $irp,$r4 move.d $r4,[$r0+$r10.b] move $ccr,[$pc+r16] .syntax no_register_prefix; Some invalid with mandated register prefix; check that they pass. push srp move.d r4,[r0+r10.d] move $ccr,[$pc+r16]; Ambiguity interpreted one way... move.d r5,$r5 move r4,$ibr move.d $r4,[r10+1] jsr r10 .syntax register_prefix; Ambiguity interpreted the other way. move.d r5,$r5 move r4,$ibr move.d $r4,[r10+1] jsr r10
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?