| 1503 | } |
| 1504 | |
| 1505 | static int rom_readbyte(lua_State *L) { |
| 1506 | lua_pushinteger(L, FCEU_ReadRomByte(luaL_checkinteger(L,1))); |
| 1507 | return 1; |
| 1508 | } |
| 1509 | |
| 1510 | static int rom_readbytesigned(lua_State *L) { |
| 1511 | lua_pushinteger(L, (signed char)FCEU_ReadRomByte(luaL_checkinteger(L,1))); |
nothing calls this directly
no test coverage detected