MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / gsWrite64_page_00

Function gsWrite64_page_00

pcsx2/GS.cpp:182–196  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

180}
181
182void gsWrite64_page_00( u32 mem, u64 value )
183{
184 s_GSRegistersWritten |= (mem == GS_DISPFB1 || mem == GS_DISPFB2 || mem == GS_PMODE);
185 bool reqUpdate = false;
186 if (mem == GS_SMODE1 || mem == GS_SMODE2)
187 {
188 if (value != *(u64*)PS2GS_BASE(mem))
189 reqUpdate = true;
190 }
191
192 gsWrite64_generic( mem, value );
193
194 if (reqUpdate)
195 UpdateVSyncRate(false);
196}
197
198void gsWrite64_page_01( u32 mem, u64 value )
199{

Callers

nothing calls this directly

Calls 2

gsWrite64_genericFunction · 0.85
UpdateVSyncRateFunction · 0.85

Tested by

no test coverage detected