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