When analyzing the assembly listing in Ghidra, the following instructions are not clear to me:
MOV ECX,dword ptr [R13 + 8192]
LEA RDX,[R13 + RSI*0x1 + 8196]
In the MOV, I assume that the register ECX will get the value pointed to the register R13 + 8129 positions (or 2048 bytes). Is this assumption current?
In the LEA, the pointer of the R13 + value of RSI + 8196 position (2049 byte) is assigned to RDX. Is it correct?
Otherwise, how should I interpret those instructions?