.section .data
values:
.int 10, 15, 0, 25, 30, 35, 40, 45, 50, 55, 60
...
movl $values, %eax
movl $2, %ebp
btsl $7, (%eax, %ebp, 4)
...
2011年(29)
分类:
2011-05-18 19:57:40
Instruction | Example |
vbtsw r16,r/m16 | btsw %bx,%cx btsw %bx,(%ebx,1) btsw %bx,(%ebx,2) btsw %bx,(%ebx,%ebp,1) |
btsl r32,r/m32 | btsl %ebx,%ecx btsl %ebx,(%ebx,2) btsl %ebx,(%ebx,4) btsl %ebx,(%ebx,%ebp,1) |
btsw imm8,r/m16 | btsw $0x7f,%cx btsw $0x7f,(%ebx,1) btsw $0x7f,(%ebx,2) btsw $0x7f,(%ebx,%ebp,1) |
btsl imm8,r/m32 | btsl $0x7f,%ecx btsl $0x7f,(%ebx,2) btsl $0x7f,(%ebx,4) btsl $0x7f,(%ebx,%ebp,1) |
引用.section .data
values:
.int 10, 15, 0, 25, 30, 35, 40, 45, 50, 55, 60
...
movl $values, %eax
movl $2, %ebp
btsl $7, (%eax, %ebp, 4)
...