Login  Register

Re: What is bitwise?

Posted by cadet1620 on Nov 05, 2014; 7:43pm
URL: http://nand2tetris-questions-and-answers-forum.52.s1.nabble.com/What-is-bitwise-tp4028463p4028464.html

Bit-wise means one bit at a time. For example, bit-wise And means that each bit position in the operands is treated independently, i.e., like the And16 you built in chapter 1.

--Mark