| 180 | } |
| 181 | |
| 182 | void 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 | |
| 198 | void gsWrite64_page_01( u32 mem, u64 value ) |
| 199 | { |
nothing calls this directly
no test coverage detected