I am trying to write a program using direct addressing and pointers on the number and create a 32 bit variable from 10136654 All operations will be done in 16 bit registers like ax, bx, etc.
But how is this possible if it must go in 16 bit from 32 bit?
a) NAND the upper 16-bits with the lower 16-bits and store the 16-bit result in a variable named MyNAND.
b) NOR the upper 16-bits with the lower 16-bits and store the 16-bit result in a variable named MyNOR
c) XOR the upper 16-bits with the lower 16-bits and store the 16-bit result in a variable named MyXOR.
d) XNOR the upper 16-bits with the lower 16-bits and store the 16-bit result in a variable named MyXNOR