Quote:
Originally Posted by jackie_w
I would prefer an even bigger indent if that is possible - maybe multiply by 8 rather than 4? - if the indents are going to be space-characters. I'm assuming this is the patch line which would need to be customised but I don't have a clue what to change it to. Or is it not as simple as that?
|
You can multiply it by any power of 2. You'd want to replace that replacement with a LSL instruction like:
LSL r2, r0, #x , where
x is the power of 2 (2^x) to multiply it by. To make it multiply by 8, you'd want 3 to be the power, which gives you
C2 00. You can compile the instruction online using
http://armconverter.com/, and taking the Thumb Hex output.