how do i performs a division by 4 of the 16-bit unsigned value in registers r4:r5 Where r4 is the most significant bit.
I understand that by division of 4 which means i have to shift the bit by 2. but how do i do it in assembly language? can i basically just LSL r4;LSLr5;? thank you for your help in explaining this.

