I'm a bit confused by the format of the instruction LMS. The description says LMS Rn,(yy) where n=0~15, yy=0~510. The problem is (yy) which is suppose to be an address divided by 2 to get a byte value in the range of 0-255. When you use a debugger will the debugger show the actual byte value or the expanded address? Vice versa, in the assembling process would the source line LMS R3,(200) be converted to 3D A5 65 or would it just be straight 3D A5 C8 and leave it up to the coder to divide the address by 2?