Previous 199869 Revisions Next

r40090 Friday 31st July, 2015 at 12:35:15 UTC by David Haywood
give Aqua Stage a wide screen layout (nw)

(still not sure why it isn't running correctly, eg not sending valid commands for 2nd screen)
[src/mame/drivers]coolridr.c
[src/mame/layout]aquastge.lay*

trunk/src/mame/drivers/coolridr.c
r248601r248602
280280
281281*/
282282
283// http://www.nicozon.net/watch/sm7834644  (first part is Aqua Stage video?)
284// http://www.system16.com/hardware.php?id=841 has a picture of Aqua Stage showing the wide aspect
283285
286
284287#include "emu.h"
285288#include "cpu/sh2/sh2.h"
286289#include "cpu/m68000/m68000.h"
287290#include "sound/scsp.h"
288291#include "machine/nvram.h"
289292#include "rendlay.h"
293#include "aquastge.lh"
290294
291295#define CLIPMAXX_FULL (496-1)
292296#define CLIPMAXY_FULL (384-1)
r248601r248602
39423946}
39433947
39443948GAME( 1995, coolridr,    0, coolridr,    coolridr, coolridr_state,    coolridr, ROT0,  "Sega", "Cool Riders",MACHINE_IMPERFECT_SOUND) // region is set in test mode, this set is for Japan, USA and Export (all regions)
3945GAME( 1995, aquastge,    0, aquastge,    aquastge, coolridr_state,    aquastge, ROT0,  "Sega", "Aqua Stage",MACHINE_NOT_WORKING)
3949GAMEL( 1995, aquastge,    0, aquastge,    aquastge, coolridr_state,    aquastge, ROT0,  "Sega", "Aqua Stage",MACHINE_NOT_WORKING, layout_aquastge)
trunk/src/mame/layout/aquastge.lay
r0r248602
1<?xml version="1.0"?>
2<mamelayout version="2">
3   
4   <!-- exact ratio unknown, could be wider -->
5   <view name="Dual Wide Screens">
6      <screen index="0">
7         <bounds left="0" top="0" right="900" bottom="450" />
8      </screen>
9      <screen index="1">
10         <bounds left="900" top="0" right="1800" bottom="450" />
11      </screen>
12
13   </view>
14
15</mamelayout>


Previous 199869 Revisions Next


© 1997-2024 The MAME Team