Files

17 lines
387 B
C++
Raw Permalink Normal View History

2024-01-28 12:16:11 -03:00
/* SPDX-FileCopyrightText: © 2022-2024 Decompollaborate */
2022-10-09 17:51:47 -03:00
/* SPDX-License-Identifier: MIT */
#include "instructions/InstructionCpu.hpp"
int main() {
uint32_t word = 0x8D4A7E18; // lw
uint32_t vram = 0x80000000;
int extraLJust = 5;
rabbitizer::InstructionCpu instr(word, vram);
printf("%08X: %s\n", word, instr.disassemble(extraLJust).c_str());
return 0;
}