May 11, 2005 #1 F feiutm9898 Full Member level 4 Joined May 31, 2004 Messages 224 Helped 4 Reputation 8 Reaction score 0 Trophy points 1,296 Location Singapore Activity points 2,027 AND 2**4 mean? Hello. I can't understand the assembly language coding as shown at below: AND 2**4 Please tell me or point out some reference link to me. Thanks.
AND 2**4 mean? Hello. I can't understand the assembly language coding as shown at below: AND 2**4 Please tell me or point out some reference link to me. Thanks.
May 11, 2005 #2 B Badaruddin Member level 1 Joined Jan 25, 2005 Messages 32 Helped 1 Reputation 2 Reaction score 1 Trophy points 1,288 Activity points 276 Re: AND 2**4 mean? What kind of assembly language do you mean?
May 11, 2005 #3 F feiutm9898 Full Member level 4 Joined May 31, 2004 Messages 224 Helped 4 Reputation 8 Reaction score 0 Trophy points 1,296 Location Singapore Activity points 2,027 Re: AND 2**4 mean? Badaruddin said: What kind of assembly language do you mean? Click to expand... zilog z80. ANy idea?
Re: AND 2**4 mean? Badaruddin said: What kind of assembly language do you mean? Click to expand... zilog z80. ANy idea?
May 11, 2005 #4 P P Puk Newbie level 6 Joined Mar 8, 2004 Messages 11 Helped 1 Reputation 2 Reaction score 0 Trophy points 1,281 Activity points 66 Re: AND 2**4 mean? I think that 2**4 is the same as 2 to the power 4 (old notation) so 2**4 = 2^4 = 16 AND 16
Re: AND 2**4 mean? I think that 2**4 is the same as 2 to the power 4 (old notation) so 2**4 = 2^4 = 16 AND 16
May 12, 2005 #5 F feiutm9898 Full Member level 4 Joined May 31, 2004 Messages 224 Helped 4 Reputation 8 Reaction score 0 Trophy points 1,296 Location Singapore Activity points 2,027 Re: AND 2**4 mean? P Puk said: I think that 2**4 is the same as 2 to the power 4 (old notation) so 2**4 = 2^4 = 16 AND 16 Click to expand... Iniatially, I think like that too. But, I think it is incorrect and have another anwser.
Re: AND 2**4 mean? P Puk said: I think that 2**4 is the same as 2 to the power 4 (old notation) so 2**4 = 2^4 = 16 AND 16 Click to expand... Iniatially, I think like that too. But, I think it is incorrect and have another anwser.
May 13, 2005 #6 B Badaruddin Member level 1 Joined Jan 25, 2005 Messages 32 Helped 1 Reputation 2 Reaction score 1 Trophy points 1,288 Activity points 276 Re: AND 2**4 mean? Normal instruction : AND s Operation : A <-- A and s The s operand is any of r, n, (HL), (IX+d), or (IY+d) I don't know AND 2**4
Re: AND 2**4 mean? Normal instruction : AND s Operation : A <-- A and s The s operand is any of r, n, (HL), (IX+d), or (IY+d) I don't know AND 2**4
May 13, 2005 #7 S Srammie Member level 1 Joined Jan 21, 2005 Messages 34 Helped 6 Reputation 12 Reaction score 3 Trophy points 1,288 Activity points 398 Re: AND 2**4 mean? Maybe its not a MCU instruction but a (conditional) assembler instruction. I would check the assembler manual for it.
Re: AND 2**4 mean? Maybe its not a MCU instruction but a (conditional) assembler instruction. I would check the assembler manual for it.