Re: how to shift bits in memory
- Posted by gareth_mcdaid Jan 24, 2011
- 1295 views
would this shift 8 bits to the right? \ 256
opcode = and_bits(instr,#F00) \256
in c its esay to do
int value;
value = 4096>>8;
would this shift 8 bits to the right? \ 256
opcode = and_bits(instr,#F00) \256
in c its esay to do
int value;
value = 4096>>8;