.text .global _start 3_start: b step1 step1: ldr pc, =step2 step2: b step2 反汇编代码: : eaffffff b 0x4 : e59ff000 ldr pc, [pc, #] ; 0xc : eafffffe b 0x8 c: tsteq r0, # ; 0x8 b跳转指令:它是个相对跳转指令,其机器码格式如下: [:]位是条件码: [:]位为"(0xeaffffff为一条指令的二进制机器码)时,表示B跳转指令; 位为&