MCPcopy Create free account
hub / github.com/TASEmulators/fceux / memory_readword

Function memory_readword

src/lua-engine.cpp:1566–1570  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1564}
1565
1566static int memory_readword(lua_State *L)
1567{
1568 lua_pushinteger(L, GetWord(L, false));
1569 return 1;
1570}
1571
1572static int memory_readwordsigned(lua_State *L) {
1573 lua_pushinteger(L, GetWord(L, true));

Callers

nothing calls this directly

Calls 2

lua_pushintegerFunction · 0.85
GetWordFunction · 0.85

Tested by

no test coverage detected