rabbitizer 1.9.0

MIPS instruction decoder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-FileCopyrightText: © 2022-2024 Decompollaborate */
/* SPDX-License-Identifier: MIT */

#include "analysis/RabbitizerLoPairingInfo.h"

void RabbitizerLoPairingInfo_Init(RabbitizerLoPairingInfo *self) {
    *self = (RabbitizerLoPairingInfo){
        .instrOffset = 0,
        .value = 0,
        .shouldProcess = false,
        .isGpRel = false,
        .isGpGot = false,
    };
}