trunk/src/mame/drivers/vamphalf.c
| r32018 | r32019 | |
| 186 | 186 | DECLARE_DRIVER_INIT(misncrft); |
| 187 | 187 | DECLARE_DRIVER_INIT(boonggab); |
| 188 | 188 | DECLARE_DRIVER_INIT(wyvernwg); |
| 189 | DECLARE_DRIVER_INIT(yorizori); |
| 189 | 190 | UINT32 screen_update_common(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); |
| 190 | 191 | UINT32 screen_update_aoh(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); |
| 191 | 192 | }; |
| r32018 | r32019 | |
| 379 | 380 | } |
| 380 | 381 | READ32_MEMBER(vamphalf_state::yorizori_1c_r) |
| 381 | 382 | { |
| 382 | | printf("yorizori_1c_r %08x\n", space.device().safe_pc()); |
| 383 | | return 0xaa; |
| 383 | // printf("yorizori_1c_r %08x\n", space.device().safe_pc()); |
| 384 | return 0x00;// 0xaa; |
| 384 | 385 | } |
| 385 | 386 | WRITE32_MEMBER(vamphalf_state::yorizori_1c_w) |
| 386 | 387 | { |
| 387 | | printf("yorizori_1c_w %08x %08x\n", space.device().safe_pc(), data); |
| 388 | // printf("yorizori_1c_w %08x %08x\n", space.device().safe_pc(), data); |
| 388 | 389 | } |
| 389 | 390 | |
| 390 | 391 | WRITE32_MEMBER( vamphalf_state::wyvernwg_snd_w ) |
| r32018 | r32019 | |
| 2762 | 2763 | membank("qs1000:data")->configure_entries(0, 16, memregion("qs1000:cpu")->base()+0x100, 0x8000-0x100); |
| 2763 | 2764 | } |
| 2764 | 2765 | |
| 2766 | DRIVER_INIT_MEMBER(vamphalf_state,yorizori) |
| 2767 | { |
| 2768 | m_palshift = 0; |
| 2769 | m_flip_bit = 1; |
| 2770 | |
| 2771 | m_semicom_prot_idx = 8; |
| 2772 | m_semicom_prot_data[0] = 2; |
| 2773 | m_semicom_prot_data[1] = 1; |
| 2774 | |
| 2775 | // Configure the QS1000 ROM banking. Care must be taken not to overlap the 256b internal RAM |
| 2776 | machine().device("qs1000:cpu")->memory().space(AS_IO).install_read_bank(0x0100, 0xffff, "data"); |
| 2777 | membank("qs1000:data")->configure_entries(0, 16, memregion("qs1000:cpu")->base()+0x100, 0x8000-0x100); |
| 2778 | } |
| 2779 | |
| 2765 | 2780 | DRIVER_INIT_MEMBER(vamphalf_state,finalgdr) |
| 2766 | 2781 | { |
| 2767 | 2782 | m_finalgdr_backupram_bank = 1; |
| r32018 | r32019 | |
| 2874 | 2889 | GAME( 2001, wyvernwga,wivernwg, wyvernwg, common, vamphalf_state, wyvernwg, ROT270, "SemiCom (Game Vision license)", "Wyvern Wings (set 2)", GAME_IMPERFECT_SOUND ) |
| 2875 | 2890 | GAME( 2001, aoh, 0, aoh, aoh, vamphalf_state, aoh, ROT0, "Unico", "Age Of Heroes - Silkroad 2 (v0.63 - 2001/02/07)", 0 ) |
| 2876 | 2891 | GAME( 2001, boonggab, 0, boonggab, boonggab, vamphalf_state, boonggab, ROT270, "Taff System", "Boong-Ga Boong-Ga (Spank'em!)", 0 ) |
| 2877 | | GAME( 199?, yorizori, 0, yorizori, common, vamphalf_state, misncrft, ROT0, "<unknown>", "Yori Zori Kuk Kuk", GAME_IMPERFECT_SOUND ) |
| 2892 | GAME( 199?, yorizori, 0, yorizori, common, vamphalf_state, yorizori, ROT0, "<unknown>", "Yori Zori Kuk Kuk", GAME_NOT_WORKING | GAME_IMPERFECT_SOUND ) |