I was trying this simple assembly with unsigned division aka udiv
mov x0, #0xd
mov x1, #0x5
udiv x2, x0, x1
So basically I divide x0 which 13 in decimal to the x1 which 5 in decimal and store the result in x2. But where the remainder stored? It must be 3.