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

Function gsWrite64_generic

pcsx2/GS.cpp:175–180  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

173// GS Write 64 bit
174
175void 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
182void gsWrite64_page_00( u32 mem, u64 value )
183{

Callers 2

gsWrite64_page_00Function · 0.85
gsWrite64_page_01Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected