trunk/src/mame/includes/amiga.h
| r30651 | r30652 | |
| 460 | 460 | static const int CLK_E_NTSC = CLK_7M_NTSC / 10; |
| 461 | 461 | |
| 462 | 462 | // screen layout |
| 463 | | static const int SCREEN_WIDTH = 910; |
| 464 | | static const int SCREEN_HEIGHT_PAL = 312; |
| 465 | | static const int SCREEN_HEIGHT_NTSC = 262; |
| 466 | | static const int VBLANK_PAL = 29; // 26 |
| 467 | | static const int VBLANK_NTSC = 21; |
| 468 | | static const int HBLANK = 186; |
| 463 | enum |
| 464 | { |
| 465 | SCREEN_WIDTH = 910, |
| 466 | SCREEN_HEIGHT_PAL = 312, |
| 467 | SCREEN_HEIGHT_NTSC = 262, |
| 468 | VBLANK_PAL = 29, // 26 |
| 469 | VBLANK_NTSC = 21, |
| 470 | HBLANK = 186 |
| 471 | }; |
| 469 | 472 | |
| 470 | 473 | required_shared_ptr<UINT16> m_chip_ram; |
| 471 | 474 | required_shared_ptr<UINT16> m_custom_regs; |