| 1570 | } |
| 1571 | |
| 1572 | static int memory_readwordsigned(lua_State *L) { |
| 1573 | lua_pushinteger(L, GetWord(L, true)); |
| 1574 | return 1; |
| 1575 | } |
| 1576 | |
| 1577 | static int memory_writebyte(lua_State *L) { |
| 1578 | uint32 A = luaL_checkinteger(L, 1); |
nothing calls this directly
no test coverage detected