mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-02-07 16:25:41 +01:00
11 lines
92 B
C++
11 lines
92 B
C++
#pragma once
|
|
|
|
class SPUThread;
|
|
|
|
struct SPUContext
|
|
{
|
|
u128 gpr[128];
|
|
|
|
SPUThread& thread;
|
|
};
|