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

Method write8

g2all/900/module/mem.js:104–114  ·  view source on GitHub ↗
(offset, value)

Source from the content-addressed store, hash-verified

102 }
103
104 write8(offset, value) {
105 const m = mem;
106 if (isInteger(offset) && 0 <= offset && offset <= 0xffffffff) {
107 m._set_addr_direct(this);
108 } else {
109 add_and_set_addr(m, offset, this.lo, this.hi);
110 offset = 0;
111 }
112
113 m.write8_at(offset, value);
114 }
115
116 write16(offset, value) {
117 const m = mem;

Callers 15

array_from_addressFunction · 0.45
userlandFunction · 0.45
launch_chainFunction · 0.45
load_prxFunction · 0.45
extra_gadgetsFunction · 0.45
kchain_setupFunction · 0.45
object_setupFunction · 0.45
trigger_sprayFunction · 0.45
exploit.jsFile · 0.45
launch_chainFunction · 0.45
stage2_Function · 0.45

Calls 3

add_and_set_addrFunction · 0.70
_set_addr_directMethod · 0.45
write8_atMethod · 0.45

Tested by

no test coverage detected