trunk/src/mess/drivers/pc9801.c
| r19341 | r19342 | |
| 624 | 624 | pc9801_state *state = device->machine().driver_data<pc9801_state>(); |
| 625 | 625 | int xi,yi; |
| 626 | 626 | int x; |
| 627 | | UINT8 char_size,interlace_on; |
| 627 | UINT8 char_size; |
| 628 | // UINT8 interlace_on; |
| 628 | 629 | UINT16 tile; |
| 629 | 630 | UINT8 pcg_sel, pcg_lr; |
| 630 | 631 | UINT8 kanji_sel; |
| r19341 | r19342 | |
| 632 | 633 | if(state->m_video_ff[DISPLAY_REG] == 0) //screen is off |
| 633 | 634 | return; |
| 634 | 635 | |
| 635 | | interlace_on = state->m_video_ff[INTERLACE_REG]; |
| 636 | // interlace_on = state->m_video_ff[INTERLACE_REG]; |
| 636 | 637 | char_size = state->m_video_ff[FONTSEL_REG] ? 16 : 8; |
| 637 | 638 | tile = 0; |
| 638 | 639 | |