Home > Mobile >  how to derive the types of the following data types from assembly code
how to derive the types of the following data types from assembly code

Time:10-07

I came across an exercise, as I am still trying to familiarise myself with assembly code.

I am unsure how to derive the types for a given struct, given the assembly code and the skeleton c code. Could someone teach me how this should be done?

This is the assembly code, where rcx and rdx hold the arguments i and j respectively.

randFunc:
    movslq             
  • Related