functions/functraceplus.py [117:124]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            four_args = ["RCX", "RDX", "R8", "R9"]
            if nth == 0:
                rsp = idc.get_reg_value("RSP")
                result = idc.get_qword(rsp)
            elif nth < 5:
                result = idc.get_reg_value(four_args[nth - 1])
            else:
                rsp = idc.get_reg_value("RSP")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



functions/funcutils.py [13:20]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        four_args = ["RCX", "RDX", "R8", "R9"]
        if nth == 0:
            rsp = idc.get_reg_value("RSP")
            result = idc.get_qword(rsp)
        elif nth < 5:
            result = idc.get_reg_value(four_args[nth - 1])
        else:
            rsp = idc.get_reg_value("RSP")
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



