branches/kale/src/mame/drivers/dkong.c
| r243936 | r243937 | |
| 302 | 302 | ------------------------------------------------ |
| 303 | 303 | |
| 304 | 304 | |
| 305 | Donkey Kong Notes |
| 306 | ================= |
| 307 | |
| 308 | Nintendo Service Department Bulletin # TKG-02 12-11-81 |
| 309 | GAME: Donkey Kong |
| 310 | SUBJECT: Speed-up Kit #1 |
| 311 | |
| 312 | TO prevent extremely long play times, we are making available |
| 313 | a speed-up kit. This kit prevents players from waiting on top |
| 314 | of ladders, on screen #1, while the barrels roll across |
| 315 | instead of coming donw on top of him. Whit this kit, barrels |
| 316 | will roll on top of the player on a ladder 70 to 80 percent of |
| 317 | the time. |
| 318 | |
| 319 | Machines above serial #30,000 will have this kit installed at |
| 320 | the factory, and all TKG4 board sets will come with this kit. |
| 321 | |
| 322 | To install this kit in a four-board set, follow these |
| 323 | instructions: |
| 324 | |
| 325 | 1) Remove P.C. Boards from game, leaving them |
| 326 | attached to P.C. Board bracket. |
| 327 | |
| 328 | 2) Using a pair of needle-nose pliers, separate the |
| 329 | sound P.C. Board fromt he CPU P.C. Board, exposing |
| 330 | the entire surface of the CPU Board. |
| 331 | |
| 332 | 3) Remove the EPROMS's at location 5F, 5A, 5H and 5K |
| 333 | from the CPU Board. (Note 5A should read 5G - MSH) |
| 334 | |
| 335 | 4) Install the speed-up kit EPROM's in the corres- |
| 336 | ponding locations. |
| 337 | |
| 338 | 5) Reconnect the sound P.C. Board to the CPU P.C. |
| 339 | Board and mount the P.C. Boards in the game. |
| 340 | -------------------------------------------------------------- |
| 341 | |
| 342 | That kit included the following 4 EPROM's |
| 343 | |
| 344 | USA (c) 1981 Nintendo of America set |
| 345 | ------------------------------------ |
| 346 | |
| 347 | Filename Label Type Loc/PCB *Label *Loc/PCB CSum |
| 348 | --------- ---------- ------ ------- ---------- -------- ---- |
| 349 | 2532.5K TKG4-C-5At 2532 5A(CPU) TKG3-C-5K 5K(CPU) A0F0 |
| 350 | 2532.5H TKG4-C-5Bt 2532 5B(CPU) TKG3-C-5H 5H(CPU) B2BC |
| 351 | 2532.5G TKG4-C-5Ct 2532 5C(CPU) TKG3-C-5G 5G(CPU) 73BA |
| 352 | 2532.5F TKG4-C-5Et 2532 5E(CPU) TKG3-C-5F 5F(CPU) AA97 |
| 353 | |
| 354 | Not only did the eprom fix the ladder bug, but it also changed |
| 355 | the copyright screen to read "(C)1981 Nintendo of America". |
| 356 | |
| 357 | |
| 305 | 358 | D2K Jumpman returns Notes |
| 306 | 359 | ========================= |
| 307 | 360 | |
| r243936 | r243937 | |
| 313 | 366 | 6800 and E800. |
| 314 | 367 | |
| 315 | 368 | |
| 316 | | Donkey Kong "Hard" Kit |
| 317 | | ====================== |
| 369 | Donkey Kong "Hard" Kit |
| 370 | ====================== |
| 318 | 371 | |
| 319 | | A yet "unconfirmed original" rom replacement kit which is a replacement for |
| 320 | | TKG-03 and -04 boards and greatly increases the speed and amount of fireballs |
| 321 | | showing on all levels. Such behavior can be seen easily on the Rivet Board, |
| 322 | | where most of the fireballs have appeared even before removing the first rivet. |
| 372 | A yet "unconfirmed original" rom replacement kit which is a replacement for |
| 373 | TKG-03 and -04 boards and greatly increases the speed and amount of fireballs |
| 374 | showing on all levels. Such behavior can be seen easily on the Rivet Board, |
| 375 | where most of the fireballs have appeared even before removing the first rivet. |
| 323 | 376 | |
| 324 | | Hopefully confirmation and information will come along later which confirms |
| 325 | | this is a legitimate Nintendo Kit. |
| 377 | Hopefully confirmation and information will come along later which confirms |
| 378 | this is a legitimate Nintendo Kit. |
| 326 | 379 | |
| 327 | 380 | ***************************************************************************/ |
| 328 | 381 | |
| r243936 | r243937 | |
| 1894 | 1947 | ROM_LOAD( "trs01v1d.bin", 0x0300, 0x0100, BAD_DUMP CRC(1b828315) SHA1(00c9f8c5ae86b68d38c66f9071b5f1ef421c1005) ) /* character color codes on a per-column basis */ |
| 1895 | 1948 | ROM_END |
| 1896 | 1949 | |
| 1897 | | ROM_START( dkong ) |
| 1950 | ROM_START( dkong ) /* Confirmed TKG-04 Upgrade as mentioned in Nintendo Service Department Bulletin # TKG-02 12-11-81 */ |
| 1898 | 1951 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 1899 | 1952 | ROM_LOAD( "c_5et_g.bin", 0x0000, 0x1000, CRC(ba70b88b) SHA1(d76ebecfea1af098d843ee7e578e480cd658ac1a) ) |
| 1900 | 1953 | ROM_LOAD( "c_5ct_g.bin", 0x1000, 0x1000, CRC(5ec461ec) SHA1(acb11a8fbdbb3ab46068385fe465f681e3c824bd) ) |
| r243936 | r243937 | |
| 2254 | 2307 | ROM_LOAD( "v-2n.bpr", 0x0200, 0x0100, CRC(dbf185bf) SHA1(2697a991a4afdf079dd0b7e732f71c7618f43b70) ) /* character color codes on a per-column basis */ |
| 2255 | 2308 | ROM_END |
| 2256 | 2309 | |
| 2257 | | ROM_START( dkongjre ) |
| 2310 | ROM_START( dkongjre ) /* Confirmed E-Kit set mentioned in Nintendo Service Department Bulletin # DJR-03 (02-23-83) */ |
| 2258 | 2311 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 2259 | 2312 | ROM_LOAD( "djr1-c.5b", 0x0000, 0x1000, CRC(ffe9e1a5) SHA1(715dc79d85169b4c1faf43458592e69b434afefd) ) |
| 2260 | 2313 | ROM_CONTINUE( 0x3000, 0x1000 ) |
| r243936 | r243937 | |
| 2291 | 2344 | ROM_REGION( 0x10000, "maincpu", 0 ) |
| 2292 | 2345 | ROM_LOAD( "dkjr1-c.5b-p", 0x0000, 0x1000, CRC(8d99b3e0) SHA1(311a9f353e62d9d07c678e45baa2efec575a8f3b) ) // does not match SUM16 of bulletin (see notes), definitely not from Nintendo |
| 2293 | 2346 | ROM_CONTINUE( 0x3000, 0x1000 ) |
| 2294 | | ROM_LOAD( "dkjr1-c.5c-p", 0x2000, 0x0800, CRC(b92d258c) SHA1(793483e249d08cbbbefe06d3ddc4c2eda5428ee8) ) // " |
| 2347 | ROM_LOAD( "dkjr1-c.5c-p", 0x2000, 0x0800, CRC(b92d258c) SHA1(793483e249d08cbbbefe06d3ddc4c2eda5428ee8) ) |
| 2295 | 2348 | ROM_CONTINUE( 0x4800, 0x0800 ) |
| 2296 | 2349 | ROM_CONTINUE( 0x1000, 0x0800 ) |
| 2297 | 2350 | ROM_CONTINUE( 0x5800, 0x0800 ) |