| 173 | // GS Write 64 bit |
| 174 | |
| 175 | void gsWrite64_generic( u32 mem, u64 value ) |
| 176 | { |
| 177 | GIF_LOG("GS Write64 at %8.8lx with data %8.8x_%8.8x", mem, (u32)(value >> 32), (u32)value); |
| 178 | |
| 179 | std::memcpy(PS2GS_BASE(mem), &value, sizeof(value)); |
| 180 | } |
| 181 | |
| 182 | void gsWrite64_page_00( u32 mem, u64 value ) |
| 183 | { |
no outgoing calls
no test coverage detected