mirror of
https://github.com/SimoneN64/Kaizen.git
synced 2025-04-02 10:41:53 -04:00
12 lines
317 B
C
12 lines
317 B
C
/* Capstone Disassembly Engine */
|
|
/* By Giovanni Dante Grazioli, deroad <wargio@libero.it>, 2024 */
|
|
|
|
#ifndef CS_MIPS_MODULE_H
|
|
#define CS_MIPS_MODULE_H
|
|
|
|
#include "../../utils.h"
|
|
|
|
cs_err Mips_global_init(cs_struct *ud);
|
|
cs_err Mips_option(cs_struct *handle, cs_opt_type type, size_t value);
|
|
|
|
#endif // CS_MIPS_MODULE_H
|