placeholder

This commit is contained in:
Michaël Banaan Ananas 2014-07-18 21:02:29 +00:00
parent ab161a9d49
commit cb29e21a1a
4 changed files with 14 additions and 1 deletions

1
.gitattributes vendored
View File

@ -8688,6 +8688,7 @@ src/mess/layout/bob85.lay svneol=native#text/xml
src/mess/layout/borisdpl.lay svneol=native#text/xml
src/mess/layout/bridgec3.lay svneol=native#text/xml
src/mess/layout/c80.lay svneol=native#text/xml
src/mess/layout/cc40.lay svneol=native#text/xml
src/mess/layout/chessmst.lay svneol=native#text/xml
src/mess/layout/chesstrv.lay svneol=native#text/xml
src/mess/layout/coco3.lay svneol=native#text/xml

View File

@ -55,6 +55,8 @@
#include "video/hd44780.h"
#include "sound/dac.h"
#include "cc40.lh"
class cc40_state : public driver_device
{
@ -398,7 +400,7 @@ static MACHINE_CONFIG_START( cc40, cc40_state )
MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(2500))
MCFG_SCREEN_SIZE(6*31, 9*1)
MCFG_SCREEN_VISIBLE_AREA(0, 6*31-1, 0, 9*1-1)
MCFG_DEFAULT_LAYOUT(layout_lcd)
MCFG_DEFAULT_LAYOUT(layout_cc40)
MCFG_SCREEN_UPDATE_DEVICE("hd44780", hd44780_device, screen_update)
MCFG_SCREEN_PALETTE("palette")

9
src/mess/layout/cc40.lay Normal file
View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<mamelayout version="2">
<view name="Internal Layout">
<screen index="0">
<bounds left="0" top="0" right="1488" bottom="72" />
</screen>
</view>
</mamelayout>

View File

@ -2258,6 +2258,7 @@ $(MESS_DRIVERS)/babbage.o: $(MESS_LAYOUT)/babbage.lh
$(MESS_DRIVERS)/bbc.o: $(MESS_LAYOUT)/bbc.lh
$(MESS_DRIVERS)/beta.o: $(MESS_LAYOUT)/beta.lh
$(MESS_DRIVERS)/bob85.o: $(MESS_LAYOUT)/bob85.lh
$(MESS_DRIVERS)/cc40.o: $(MESS_LAYOUT)/cc40.lh
$(MAME_DRIVERS)/cdi.o: $(MAME_LAYOUT)/cdi.lh
$(MESS_DRIVERS)/chessmst.o: $(MESS_LAYOUT)/chessmst.lh
$(MESS_DRIVERS)/chesstrv.o: $(MESS_LAYOUT)/chesstrv.lh \