| 1508 | } |
| 1509 | |
| 1510 | static int rom_readbytesigned(lua_State *L) { |
| 1511 | lua_pushinteger(L, (signed char)FCEU_ReadRomByte(luaL_checkinteger(L,1))); |
| 1512 | return 1; |
| 1513 | } |
| 1514 | |
| 1515 | static int rom_readbyterange(lua_State *L) { |
| 1516 | int range_start = luaL_checkinteger(L, 1); |
nothing calls this directly
no test coverage detected