mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 23:15:18 +00:00
10 lines
92 B
C++
10 lines
92 B
C++
#pragma once
|
|
|
|
class SPUThread;
|
|
|
|
struct SPUContext
|
|
{
|
|
u128 gpr[128];
|
|
|
|
SPUThread& thread;
|
|
};
|