Bit Test
http://dbpedia.org/resource/Bit_Test an entity of type: WikicatX86Instructions
BT 명령어는 비트 연산 (Bit Test)을 의미하며 80386 프로세서에서 과 함께 추가되었다. BT는 주어진 레지스터에서 캐리 플래그로 비트를 복사한다. 예시: EAX에서 세번째 최하위 비트를 캐리 플래그로 복사한다 BT EAX, 2 BTS (Bit Test and Set)도 똑같이 동작하지만 레지스터에서 그 비트를 1로 설정하며, BTR (Bit Test and Reset)는 0으로, 그리고 BTC (Bit Test and Complement)는 그것을 반대로 설정한다.
rdf:langString
The BT x86 assembly language instruction stands for Bit Test and was added to the x86 instruction set with the 80386 processor. BT copies a bit from a given register to the carry flag. Example: copy the third least significant bit from EAX to the carry flag BT EAX, 2 BTS (Bit Test and Set) operates the same, but also sets the bit in the register, while BTR (Bit Test and Reset) resets it, and BTC (Bit Test and Complement) flips it. Logical Explanation BT Logical Explanation BTC
rdf:langString
rdf:langString
Bit Test
rdf:langString
비트 연산 (x86 명령어)
xsd:integer
32821151
xsd:integer
1003979053
rdf:langString
The BT x86 assembly language instruction stands for Bit Test and was added to the x86 instruction set with the 80386 processor. BT copies a bit from a given register to the carry flag. Example: copy the third least significant bit from EAX to the carry flag BT EAX, 2 BTS (Bit Test and Set) operates the same, but also sets the bit in the register, while BTR (Bit Test and Reset) resets it, and BTC (Bit Test and Complement) flips it. Logical Explanation BT BT SRC, POSITION SRC Represent as bits array POSITION Represent as numeric position From Right to Left Start at 0 CF Carry Flag Result CF = SRC[POSITION] Logical Explanation BTC BTC SRC, POSITION SRC Represent as bits array for CF Result Represent as hex for SRC Result POSITION Represent as numeric position From Right to Left Start at 0 CF Carry Flag Result CF = SRC[POSITION] XOR SRC, POW(2,POSITION)
rdf:langString
BT 명령어는 비트 연산 (Bit Test)을 의미하며 80386 프로세서에서 과 함께 추가되었다. BT는 주어진 레지스터에서 캐리 플래그로 비트를 복사한다. 예시: EAX에서 세번째 최하위 비트를 캐리 플래그로 복사한다 BT EAX, 2 BTS (Bit Test and Set)도 똑같이 동작하지만 레지스터에서 그 비트를 1로 설정하며, BTR (Bit Test and Reset)는 0으로, 그리고 BTC (Bit Test and Complement)는 그것을 반대로 설정한다.
xsd:nonNegativeInteger
1777