mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-25 06:49:24 +00:00
11 lines
322 B
C
11 lines
322 B
C
|
#ifndef HW_MIPS_CPUDEVS_H
|
||
|
#define HW_MIPS_CPUDEVS_H
|
||
|
/* Definitions for MIPS CPU internal devices. */
|
||
|
|
||
|
/* mips_addr.c */
|
||
|
uint64_t cpu_mips_kseg0_to_phys(void *opaque, uint64_t addr);
|
||
|
uint64_t cpu_mips_phys_to_kseg0(void *opaque, uint64_t addr);
|
||
|
uint64_t cpu_mips_kvm_um_phys_to_kseg0(void *opaque, uint64_t addr);
|
||
|
|
||
|
#endif
|