mov x0, #1000
mov w6, #-1
add x7,x0,x6, sxtw
what will be the value of x6 and x7? [In hex] Here ans x6=0xffffffff //why all value of lower half filled with 1? and how sxtw work when the ans will be 999 in decimal. I want to know details how this happening.