2023-05-02 20:41:02 +00:00
|
|
|
/* SPDX-FileCopyrightText: © 2022-2023 Decompollaborate */
|
2022-06-04 00:19:58 +00:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
|
2022-06-08 04:30:58 +00:00
|
|
|
#include "instructions/RabbitizerInstruction.h"
|
2022-06-04 00:19:58 +00:00
|
|
|
|
2022-06-04 16:43:54 +00:00
|
|
|
#include <assert.h>
|
2022-06-04 06:42:17 +00:00
|
|
|
#include <stdio.h>
|
2022-07-10 20:04:39 +00:00
|
|
|
#include <string.h>
|
2022-06-04 06:42:17 +00:00
|
|
|
#include <stdlib.h>
|
2022-06-04 00:19:58 +00:00
|
|
|
|
2022-06-04 16:43:54 +00:00
|
|
|
|
2022-06-04 00:19:58 +00:00
|
|
|
int main() {
|
2022-07-03 23:28:13 +00:00
|
|
|
uint32_t word;
|
2022-06-08 04:30:58 +00:00
|
|
|
RabbitizerInstruction instr;
|
2022-06-04 06:42:17 +00:00
|
|
|
char *buffer;
|
2022-07-03 23:28:13 +00:00
|
|
|
int extraLJust = 5;
|
2022-10-10 00:59:33 +00:00
|
|
|
size_t bufferSize;
|
|
|
|
size_t disassembledSize;
|
2022-07-03 23:28:13 +00:00
|
|
|
|
2022-10-10 00:59:33 +00:00
|
|
|
word = 0x8D4A7E18; // lw
|
|
|
|
//word = 0x00004010; // mfhi
|
2022-06-04 00:19:58 +00:00
|
|
|
|
2022-07-09 20:54:42 +00:00
|
|
|
RabbitizerInstruction_init(&instr, word, 0x80000000);
|
2022-06-04 00:19:58 +00:00
|
|
|
|
2022-06-08 04:30:58 +00:00
|
|
|
RabbitizerInstruction_processUniqueId(&instr);
|
2022-06-04 05:24:59 +00:00
|
|
|
|
2022-10-10 00:59:33 +00:00
|
|
|
bufferSize = RabbitizerInstruction_getSizeForBuffer(&instr, 0, extraLJust);
|
|
|
|
buffer = malloc(bufferSize + 1);
|
2022-06-04 16:43:54 +00:00
|
|
|
assert(buffer != NULL);
|
2022-06-04 06:42:17 +00:00
|
|
|
|
2022-10-10 00:59:33 +00:00
|
|
|
disassembledSize = RabbitizerInstruction_disassemble(&instr, buffer, NULL, 0, extraLJust);
|
|
|
|
assert(disassembledSize <= bufferSize);
|
2022-06-04 00:19:58 +00:00
|
|
|
|
|
|
|
printf("%08X: %s\n", word, buffer);
|
|
|
|
|
2022-06-04 06:42:17 +00:00
|
|
|
free(buffer);
|
2022-06-08 04:30:58 +00:00
|
|
|
RabbitizerInstruction_destroy(&instr);
|
2022-06-04 00:19:58 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|