代码搜索:objdump
找到约 4,575 项符合「objdump」的源代码
代码结果 4,575
www.eeworm.com/read/395929/2429749
d regops3.d
#objdump: -d
#name: TIc80 register operands with :s modifier
.*: +file format .*tic80.*
Disassembly of section .text:
00000000 :
0: 04 0c b4 41.*
4: 04 2c b4 41.*
8: 04 4c b4 41.*
www.eeworm.com/read/395929/2429806
d ssemmx2.d
#as: -J
#objdump: -dw
#name: i386 ssemmx2
.*: +file format .*
Disassembly of section .text:
0+ :
[ ]+0: 66 0f e0 c1[ ]+pavgb[ ]+%xmm1,%xmm0
[ ]+4: 66 0f e0 0a[ ]+pavgb[ ]+\(%edx\),%xmm1
www.eeworm.com/read/395929/2429811
d jump16.d
#name: i386 jump16
#objdump: -drw -mi8086
.*: file format .*i386.*
Disassembly of section .text:
0+000 :
0: eb fe [ ]*jmp (0x0|0 )
2: e9 (fe|fb) ff [ ]*jmp (0x3|0x0|
www.eeworm.com/read/395929/2429825
d reloc64.d
#as: -64 -Av9
#objdump: -dr
#name: sparc64 reloc64
.*: +file format .*sparc.*
Disassembly of section .text:
0+ :
0: 03 04 8d 15 sethi %hi\(0x12345400\), %g1
4: 82 10 62 78 or %g1, 0x
www.eeworm.com/read/395929/2429844
d asi.d
#as: -Av9
#objdump: -dr
#name: sparc64 asi
.*: +file format .*sparc.*
Disassembly of section .text:
0+ :
0: c4 80 40 00 lda \[ %g1 \] \(0\), %g2
4: c4 80 5f e0 lda \[ %g1 \] \(255\
www.eeworm.com/read/395929/2429888
d inst.d
#objdump: -dr
#name: D10V basic instruction test output
#as:
.*: +file format elf32-d10v
Disassembly of section .text:
00000000 :
0: a9 04 c2 29 sac r0, a0
www.eeworm.com/read/395929/2430011
d uppercase.d
#as:
#objdump: -dr
#name: uppercase
.*: +file format .*
Disassembly of section .text:
0+0000 :
0: 10 81 10 91 * mv r0,r1 -> mvfc r0,cbr
0+0004 :
4: d0 c0 00 00 seth r0,#0x0
[ ]*
www.eeworm.com/read/395929/2430017
d relax-2.d
#as: --m32rx
#objdump: -dr
#name: relax-2
.*: +file format .*
Disassembly of section .text:
0+0 :
0: fd 00 00 83 bnc 20c
4: 70 00 f0 00 nop \|\| nop
8: 43 03 c2 02 addi
www.eeworm.com/read/16094/659128
makefile
objs := head.o init.o nand.o main.o
nand.bin : $(objs)
arm-linux-ld -Tnand.lds -o nand_elf $^
arm-linux-objcopy -O binary -S nand_elf $@
arm-linux-objdump -D -m arm nand_elf > nand.dis
%.o:%.c
www.eeworm.com/read/16094/659181
makefile
objs := head.o init.o serial.o main.o
uart.bin: $(objs)
arm-linux-ld -Tuart.lds -o uart_elf $^
arm-linux-objcopy -O binary -S uart_elf $@
arm-linux-objdump -D -m arm uart_elf > uart.dis
%.o:%.c