| 1607 | } |
| 1608 | |
| 1609 | static int ppu_readbyte(lua_State *L) { |
| 1610 | lua_pushinteger(L, FFCEUX_PPURead(luaL_checkinteger(L, 1))); |
| 1611 | return 1; |
| 1612 | } |
| 1613 | |
| 1614 | static int ppu_readbyterange(lua_State *L) { |
| 1615 | int range_start = luaL_checkinteger(L, 1); |
nothing calls this directly
no test coverage detected