emu.poweron() Executes a power cycle
| 459 | // |
| 460 | // Executes a power cycle |
| 461 | static int emu_poweron(lua_State *L) { |
| 462 | if (GameInfo) |
| 463 | FCEUI_PowerNES(); |
| 464 | |
| 465 | return 0; |
| 466 | } |
| 467 | |
| 468 | static int emu_debuggerloop(lua_State *L) { |
| 469 | #ifdef __WIN_DRIVER__ |
nothing calls this directly
no test coverage detected