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

Function rom_readbytesigned

src/lua-engine.cpp:1510–1513  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1508}
1509
1510static int rom_readbytesigned(lua_State *L) {
1511 lua_pushinteger(L, (signed char)FCEU_ReadRomByte(luaL_checkinteger(L,1)));
1512 return 1;
1513}
1514
1515static int rom_readbyterange(lua_State *L) {
1516 int range_start = luaL_checkinteger(L, 1);

Callers

nothing calls this directly

Calls 3

lua_pushintegerFunction · 0.85
FCEU_ReadRomByteFunction · 0.85
luaL_checkintegerFunction · 0.85

Tested by

no test coverage detected