| | programming help. edmund
| | | hello can someone please tell me what does the following command line mean? bit_set(0x0e, 1 << (4 + motor)); i know that 0x0e refers to memory location $0E but how does bit_set work? is it similar to poke? and more importantly, what operation does (...) (26 years ago, 31-Oct-98, to lugnet.robotics.handyboard)
| | | | | | | | Re: programming help. Eric Noyau
| | | | | (...) In binary 1 is represented by 0000-0001 1 << 1 is 0000-0010 aka 2 1 << 2 is 0000-0100 aka 4 1 << 3 is 0000-1000 aka 8 You get the idea? x << y means slide x to the left y times. motor is probably a number between 0 and 3. 4+motor is then a (...) (26 years ago, 31-Oct-98, to lugnet.robotics.handyboard)
| | | | | | |