| 1585 | } |
| 1586 | |
| 1587 | static int legacymemory_writebyte(lua_State *L) { |
| 1588 | FCEU_CheatSetByte(luaL_checkinteger(L,1), luaL_checkinteger(L,2)); |
| 1589 | return 0; |
| 1590 | } |
| 1591 | |
| 1592 | static int memory_readbyterange(lua_State *L) { |
| 1593 |
nothing calls this directly
no test coverage detected