trunk/src/mame/drivers/vastar.c
| r18917 | r18918 | |
| 288 | 288 | PORT_DIPSETTING( 0x02, "2" ) |
| 289 | 289 | PORT_DIPSETTING( 0x01, "3" ) |
| 290 | 290 | PORT_DIPSETTING( 0x00, "4" ) |
| 291 | | PORT_DIPNAME( 0x04, 0x04, DEF_STR( Unknown ) ) PORT_DIPLOCATION("DSW1:3") // unused? |
| 291 | PORT_DIPNAME( 0x04, 0x04, "Player Controls Demo (Cheat)" ) PORT_DIPLOCATION("DSW1:3") |
| 292 | 292 | PORT_DIPSETTING( 0x04, DEF_STR( Off ) ) |
| 293 | 293 | PORT_DIPSETTING( 0x00, DEF_STR( On ) ) |
| 294 | 294 | PORT_DIPNAME( 0x08, 0x08, "Invulnerability (Cheat)" ) PORT_DIPLOCATION("DSW1:4") |
trunk/src/mame/drivers/igs_m027.c
| r18917 | r18918 | |
| 67 | 67 | TILE_GET_INFO_MEMBER(get_bg_tilemap_tile_info); |
| 68 | 68 | virtual void video_start(); |
| 69 | 69 | UINT32 screen_update_igs_majhong(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); |
| 70 | UINT32 screen_update_fearless(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); |
| 70 | 71 | INTERRUPT_GEN_MEMBER(igs_majhong_interrupt); |
| 71 | 72 | }; |
| 72 | 73 | |
| r18917 | r18918 | |
| 207 | 208 | return 0; |
| 208 | 209 | } |
| 209 | 210 | |
| 211 | UINT32 igs_m027_state::screen_update_fearless(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect) |
| 212 | { |
| 213 | return 0; |
| 214 | } |
| 215 | |
| 210 | 216 | /*************************************************************************** |
| 211 | 217 | |
| 212 | 218 | Blitter |
| r18917 | r18918 | |
| 414 | 420 | MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(0)) |
| 415 | 421 | MCFG_SCREEN_SIZE(512, 256) |
| 416 | 422 | MCFG_SCREEN_VISIBLE_AREA(0, 512-1, 0, 256-1) |
| 417 | | MCFG_SCREEN_UPDATE_DRIVER(igs_m027_state, screen_update_igs_majhong) |
| 423 | MCFG_SCREEN_UPDATE_DRIVER(igs_m027_state, screen_update_fearless) |
| 418 | 424 | |
| 419 | 425 | MCFG_PALETTE_LENGTH(0x200) |
| 420 | 426 | |