answersLogoWhite

0

It depends on the specific instruction set for the processor you are programming. Most processors will support the basic logical instructions, but you would have to view the documentation for a particular processor to know for sure.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

Which is not an instruction for the assembly of a language?

labels


Is dec an instruction for the assembly language?

yes


What is an absolute instruction?

An absolute instruction is an assembly language instruction using only absolute addresses.


What is an instruction in assembly language?

An instruction is the lowest level of commands which can be issued to a processor.


Assembly language to machine language translation is?

Assembly language to machine code translation is a "one to one" translation process, as every individual instruction expressed in the assembly language corresponds to exactly one machine instruction. Note this does not hold for pseudo instructions or expanding macros, which are supported by some assemblers.


What is XOR in a c program?

a XOR b is a^b in C language


Is jne An instruction for the assembly language?

Yes. JNE is the Jump Not Equal instruction and all assembly languages support it.


What is the nemonic of Microsoft?

in assembly language machine language instruction are replaced by English like words these words are called mnemonic


Why is assembly language considered easier for humans to program than machine language?

Assembly is signficantly shorter and easier to remember than the equivilant machine instructions. Assembly instructions are human readable characters, for which a direct translation exists to the binary machine code instructions. Pseudo example: add <- assembly instruction 1010101010 <- machine instruction


How do you write a code to complement the corresponding bit in bx if AX contains 6complement the 6th bit of BX in assembly?

To complement the 6th bit of the BX register in assembly language, you can use the XOR instruction. The 6th bit corresponds to the bit mask 0x20 (binary 0010 0000). The code would look like this: MOV AX, 6 ; Load AX with 6 (not directly relevant to complementing BX) XOR BX, 0x20 ; Complement the 6th bit of BX This will toggle the 6th bit of BX, effectively complementing it.


What is called the collection of commands that a specific CPU executes?

machine code instruction set or assembly language


What is odh and 0ah instruction in assembly programming language?

0dh is for the ENTER KEY and the 0ah is for the NEW LINE