mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-24 20:51:12 +00:00
94dbf9eb96
Functionally everything is here, however it crashes for some bizarre reason upon initialization. Yay for qemu having an overcomplicated initialization process that's difficult to keep a mental model of.
14 lines
375 B
C
14 lines
375 B
C
/* Unicorn Emulator Engine */
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2018 */
|
|
|
|
#ifndef UC_QEMU_TARGET_RISCV_H
|
|
#define UC_QEMU_TARGET_RISCV_H
|
|
|
|
void riscv32_uc_init(struct uc_struct *uc);
|
|
void riscv64_uc_init(struct uc_struct *uc);
|
|
|
|
extern const int RISCV32_REGS_STORAGE_SIZE_riscv32;
|
|
extern const int RISCV64_REGS_STORAGE_SIZE_riscv64;
|
|
|
|
#endif /* UC_QEMU_TARGET_RISCV_H */
|