MCPcopy Create free account
hub / github.com/GamerHack/GamerHack.github.io / read

Function read

702/WebRTE/ps4.js:189–196  ·  view source on GitHub ↗
(addr, length)

Source from the content-addressed store, hash-verified

187}
188
189function read(addr, length) {
190 for (let i = 0; i < 8; i++)
191 g_relative_rw[g_ab_index + OFFSET_JSAB_VIEW_VECTOR + i] = addr.byteAt(i);
192 let arr = [];
193 for (let i = 0; i < length; i++)
194 arr.push(g_ab_slave[i]);
195 return arr;
196}
197
198function read64(addr) {
199 return new Int64(read(addr, 8));

Callers 1

read64Function · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected