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

Function read

restore/702/ps4.js:125–132  ·  view source on GitHub ↗
(addr, length)

Source from the content-addressed store, hash-verified

123}
124
125function read(addr, length) {
126 for (let i = 0; i < 8; i++)
127 g_relative_rw[g_ab_index + OFFSET_JSAB_VIEW_VECTOR + i] = addr.byteAt(i);
128 let arr = [];
129 for (let i = 0; i < length; i++)
130 arr.push(g_ab_slave[i]);
131 return arr;
132}
133
134function read64(addr) {
135 return new Int64(read(addr, 8));

Callers 1

read64Function · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected