mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 01:38:37 +12:00
ppu_syscall_code type added (for fmt)
This commit is contained in:
parent
f49a30bc1a
commit
8034196c25
4 changed files with 15 additions and 7 deletions
|
@ -763,7 +763,6 @@ const ppu_decoder<ppu_itype> s_ppu_itype;
|
|||
|
||||
extern u64 get_timebased_time();
|
||||
extern ppu_function_t ppu_get_syscall(u64 code);
|
||||
extern std::string ppu_get_syscall_name(u64 code);
|
||||
|
||||
extern __m128 sse_exp2_ps(__m128 A);
|
||||
extern __m128 sse_log2_ps(__m128 A);
|
||||
|
@ -957,7 +956,7 @@ extern void ppu_initialize(const ppu_module& info)
|
|||
{
|
||||
if (auto sc = ppu_get_syscall(index))
|
||||
{
|
||||
link_table.emplace(ppu_get_syscall_name(index), (u64)sc);
|
||||
link_table.emplace(fmt::format("%s", ppu_syscall_code(index)), (u64)sc);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue