| 1564 | } |
| 1565 | |
| 1566 | static int memory_readword(lua_State *L) |
| 1567 | { |
| 1568 | lua_pushinteger(L, GetWord(L, false)); |
| 1569 | return 1; |
| 1570 | } |
| 1571 | |
| 1572 | static int memory_readwordsigned(lua_State *L) { |
| 1573 | lua_pushinteger(L, GetWord(L, true)); |
nothing calls this directly
no test coverage detected