throbscottle
Well-Known Member
If I assign a block of bytes using res, eg
and I then want to shift the bits, eg
will this shift all 4 bytes, or do I also need to do
????????
Code:
BCD res 4
and I then want to shift the bits, eg
Code:
rrf BCD
will this shift all 4 bytes, or do I also need to do
Code:
rrf BCD+1
rrf BCD+2
rrf BCD+3
????????