| 417 | } |
| 418 | |
| 419 | void lcd_reset(void) { |
| 420 | memset(&lcd, 0, offsetof(lcd_state_t, useDma)); |
| 421 | lcd_update(); |
| 422 | lcd_init_events(); |
| 423 | gui_console_printf("[CEmu] LCD reset.\n"); |
| 424 | } |
| 425 | |
| 426 | static uint8_t lcd_read(const uint16_t pio, bool peek) { |
| 427 | uint16_t index = pio; |
nothing calls this directly
no test coverage detected