| Previous | 199869 Revisions | Next |
| r44435 Monday 25th January, 2016 at 00:25:27 UTC by David Haywood |
|---|
| regression fixes (nw) |
| [src/mame/drivers] | bfm_sc2.cpp segas16b.cpp |
| r252946 | r252947 | |
|---|---|---|
| 2284 | 2284 | |
| 2285 | 2285 | void bfm_sc2_state::adder2_common_init() |
| 2286 | 2286 | { |
| 2287 | UINT8 *pal; | |
| 2288 | ||
| 2289 | pal = memregion("proms")->base(); | |
| 2290 | if ( pal ) | |
| 2287 | if (memregion("proms") != nullptr) | |
| 2291 | 2288 | { |
| 2289 | UINT8 *pal; | |
| 2290 | pal = memregion("proms")->base(); | |
| 2292 | 2291 | memcpy(m_key, pal, 8); |
| 2293 | 2292 | } |
| 2294 | 2293 | } |
| r252946 | r252947 | |
|---|---|---|
| 8242 | 8242 | DRIVER_INIT_CALL(generic_5358_small); |
| 8243 | 8243 | m_custom_io_r = read16_delegate(FUNC(segas16b_state::sdi_custom_io_r), this); |
| 8244 | 8244 | |
| 8245 | UINT8 *rom = memregion("maincpux")->base(); | |
| 8246 | if (rom) | |
| 8245 | if (memregion("maincpux") != nullptr) | |
| 8246 | { | |
| 8247 | UINT8 *rom = memregion("maincpux")->base(); | |
| 8247 | 8248 | memcpy(m_decrypted_opcodes, rom, 0x30000); |
| 8249 | } | |
| 8248 | 8250 | } |
| 8249 | 8251 | |
| 8250 | 8252 |
| https://github.com/mamedev/mame/commit/bc1ee101120bec8a13ae881ebe676fc65497684c |
| Previous | 199869 Revisions | Next |