mirror of
https://github.com/holub/mame
synced 2025-05-08 15:22:28 +03:00
24cdjuke: added preliminary display and input ports.
This commit is contained in:
parent
5dfc5d41d2
commit
dcd0b17dc6
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -4638,6 +4638,7 @@ src/mame/includes/zaxxon.h svneol=native#text/plain
|
||||
src/mame/includes/zerozone.h svneol=native#text/plain
|
||||
src/mame/includes/zodiack.h svneol=native#text/plain
|
||||
src/mame/layout/18w.lay svneol=native#text/plain
|
||||
src/mame/layout/24cdjuke.lay svneol=native#text/plain
|
||||
src/mame/layout/280zzzap.lay svneol=native#text/plain
|
||||
src/mame/layout/30test.lay svneol=native#text/plain
|
||||
src/mame/layout/3bagflnz.lay svneol=native#text/plain
|
||||
|
@ -52,27 +52,215 @@ http://www.tilt.it/deb/i-midcoin.html
|
||||
|
||||
#include "emu.h"
|
||||
#include "cpu/z80/z80.h"
|
||||
#include "machine/i8255.h"
|
||||
#include "24cdjuke.lh"
|
||||
|
||||
class midcoin24cdjuke_state : public driver_device
|
||||
{
|
||||
public:
|
||||
midcoin24cdjuke_state(const machine_config &mconfig, device_type type, const char *tag)
|
||||
: driver_device(mconfig, type, tag),
|
||||
m_maincpu(*this, "maincpu") { }
|
||||
m_maincpu(*this, "maincpu"),
|
||||
m_io_row0(*this, "ROW0"),
|
||||
m_io_row1(*this, "ROW1"),
|
||||
m_io_row2(*this, "ROW2"),
|
||||
m_io_row3(*this, "ROW3"),
|
||||
m_charset(*this, "charset")
|
||||
{ }
|
||||
|
||||
required_device<cpu_device> m_maincpu;
|
||||
required_ioport m_io_row0;
|
||||
required_ioport m_io_row1;
|
||||
required_ioport m_io_row2;
|
||||
required_ioport m_io_row3;
|
||||
required_memory_region m_charset;
|
||||
|
||||
virtual void machine_start();
|
||||
virtual void machine_reset();
|
||||
|
||||
DECLARE_READ8_MEMBER(kb_row_r);
|
||||
DECLARE_WRITE8_MEMBER(kb_col_w);
|
||||
DECLARE_WRITE8_MEMBER(digit_w);
|
||||
|
||||
DECLARE_READ8_MEMBER(rand_r){ return machine().rand(); }
|
||||
|
||||
private:
|
||||
UINT8 m_kb_col;
|
||||
};
|
||||
|
||||
|
||||
READ8_MEMBER(midcoin24cdjuke_state::kb_row_r)
|
||||
{
|
||||
UINT8 data = 0xff;
|
||||
|
||||
if (!(m_kb_col & 0x10))
|
||||
data &= m_io_row0->read();
|
||||
if (!(m_kb_col & 0x20))
|
||||
data &= m_io_row1->read();
|
||||
if (!(m_kb_col & 0x40))
|
||||
data &= m_io_row2->read();
|
||||
if (!(m_kb_col & 0x80))
|
||||
data &= m_io_row3->read();
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
WRITE8_MEMBER(midcoin24cdjuke_state::kb_col_w)
|
||||
{
|
||||
m_kb_col = data & 0xf0;
|
||||
}
|
||||
|
||||
WRITE8_MEMBER(midcoin24cdjuke_state::digit_w)
|
||||
{
|
||||
UINT8* charset = (UINT8*)(*m_charset);
|
||||
UINT16 char_offset = (((data & 0x60) << 1) | (data & 0x1f)) << 1;
|
||||
UINT16 char_data = ((charset[char_offset + 1] << 8) | charset[char_offset]);
|
||||
|
||||
char_data = BITSWAP16(char_data, 13,11,9,15,14,10,12,8,7,6,5,4,3,2,1,0);
|
||||
|
||||
output_set_digit_value(offset, char_data ^ 0xffff);
|
||||
}
|
||||
|
||||
|
||||
static ADDRESS_MAP_START( midcoin24cdjuke_map, AS_PROGRAM, 8, midcoin24cdjuke_state )
|
||||
AM_RANGE(0x0000, 0x3fff) AM_ROM
|
||||
AM_RANGE(0x7800, 0x780f) AM_WRITE(digit_w)
|
||||
AM_RANGE(0x8000, 0xffff) AM_RAM
|
||||
ADDRESS_MAP_END
|
||||
|
||||
static ADDRESS_MAP_START( midcoin24cdjuke_io, AS_IO, 8, midcoin24cdjuke_state )
|
||||
ADDRESS_MAP_GLOBAL_MASK(0xff)
|
||||
AM_RANGE(0x00, 0x03) AM_DEVREADWRITE("ic31", i8255_device, read, write)
|
||||
AM_RANGE(0x04, 0x07) AM_DEVREADWRITE("ic11", i8255_device, read, write)
|
||||
AM_RANGE(0x08, 0x0b) AM_DEVREADWRITE("ic25", i8255_device, read, write)
|
||||
AM_RANGE(0x0c, 0x0c) AM_WRITENOP
|
||||
AM_RANGE(0x10, 0x1f) AM_READ(rand_r)
|
||||
ADDRESS_MAP_END
|
||||
|
||||
static INPUT_PORTS_START( midcoin24cdjuke )
|
||||
PORT_START("ROW0")
|
||||
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("DEL") PORT_CODE(KEYCODE_DEL)
|
||||
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("9") PORT_CODE(KEYCODE_9_PAD)
|
||||
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("6") PORT_CODE(KEYCODE_6_PAD)
|
||||
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("3") PORT_CODE(KEYCODE_3_PAD)
|
||||
PORT_START("ROW1")
|
||||
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("0") PORT_CODE(KEYCODE_0_PAD)
|
||||
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("8") PORT_CODE(KEYCODE_8_PAD)
|
||||
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("5") PORT_CODE(KEYCODE_5_PAD)
|
||||
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("2") PORT_CODE(KEYCODE_2_PAD)
|
||||
PORT_START("ROW2")
|
||||
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_START1 )
|
||||
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("7") PORT_CODE(KEYCODE_7_PAD)
|
||||
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("4") PORT_CODE(KEYCODE_4_PAD)
|
||||
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_NAME("1") PORT_CODE(KEYCODE_1_PAD)
|
||||
PORT_START("ROW3")
|
||||
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_CODE(KEYCODE_Q)
|
||||
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_CODE(KEYCODE_W)
|
||||
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_CODE(KEYCODE_E)
|
||||
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_KEYPAD ) PORT_CODE(KEYCODE_R)
|
||||
PORT_START("PB")
|
||||
PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_COIN1 )
|
||||
|
||||
PORT_START("MD1")
|
||||
PORT_DIPNAME( 0x01, 0x01, "MD1 1")
|
||||
PORT_DIPSETTING( 0x01, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x02, 0x02, "2")
|
||||
PORT_DIPSETTING( 0x02, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x04, 0x04, "3")
|
||||
PORT_DIPSETTING( 0x04, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x08, 0x08, "4")
|
||||
PORT_DIPSETTING( 0x08, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x10, 0x10, "5")
|
||||
PORT_DIPSETTING( 0x10, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x20, 0x20, "6")
|
||||
PORT_DIPSETTING( 0x20, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x40, 0x40, "7")
|
||||
PORT_DIPSETTING( 0x40, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x80, 0x80, "8")
|
||||
PORT_DIPSETTING( 0x80, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_START("MD2")
|
||||
PORT_DIPNAME( 0x01, 0x01, "MD2 1")
|
||||
PORT_DIPSETTING( 0x01, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x02, 0x02, "2")
|
||||
PORT_DIPSETTING( 0x02, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x04, 0x04, "3")
|
||||
PORT_DIPSETTING( 0x04, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x08, 0x08, "4")
|
||||
PORT_DIPSETTING( 0x08, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x10, 0x10, "5")
|
||||
PORT_DIPSETTING( 0x10, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x20, 0x20, "6")
|
||||
PORT_DIPSETTING( 0x20, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x40, 0x40, "7")
|
||||
PORT_DIPSETTING( 0x40, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x80, 0x80, "8")
|
||||
PORT_DIPSETTING( 0x80, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_START("MD3")
|
||||
PORT_DIPNAME( 0x01, 0x01, "MD3 1")
|
||||
PORT_DIPSETTING( 0x01, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x02, 0x02, "2")
|
||||
PORT_DIPSETTING( 0x02, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x04, 0x04, "3")
|
||||
PORT_DIPSETTING( 0x04, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x08, 0x08, "4")
|
||||
PORT_DIPSETTING( 0x08, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x10, 0x10, "5")
|
||||
PORT_DIPSETTING( 0x10, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x20, 0x20, "6")
|
||||
PORT_DIPSETTING( 0x20, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x40, 0x40, "7")
|
||||
PORT_DIPSETTING( 0x40, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x80, 0x80, "8")
|
||||
PORT_DIPSETTING( 0x80, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_START("MD4")
|
||||
PORT_DIPNAME( 0x01, 0x01, "MD4 1")
|
||||
PORT_DIPSETTING( 0x01, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x02, 0x02, "2")
|
||||
PORT_DIPSETTING( 0x02, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x04, 0x04, "3")
|
||||
PORT_DIPSETTING( 0x04, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x08, 0x08, "4")
|
||||
PORT_DIPSETTING( 0x08, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x10, 0x10, "5")
|
||||
PORT_DIPSETTING( 0x10, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x20, 0x20, "6")
|
||||
PORT_DIPSETTING( 0x20, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x40, 0x40, "7")
|
||||
PORT_DIPSETTING( 0x40, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x80, 0x80, "8")
|
||||
PORT_DIPSETTING( 0x80, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
INPUT_PORTS_END
|
||||
|
||||
|
||||
@ -84,12 +272,49 @@ void midcoin24cdjuke_state::machine_reset()
|
||||
{
|
||||
}
|
||||
|
||||
static MACHINE_CONFIG_START( midcoin24cdjuke, midcoin24cdjuke_state )
|
||||
static I8255A_INTERFACE( ppi8255_intf_1 )
|
||||
{
|
||||
DEVCB_INPUT_PORT("MD1"), // Port A read
|
||||
DEVCB_NULL, // Port A write
|
||||
DEVCB_INPUT_PORT("MD2"), // Port B read
|
||||
DEVCB_NULL, // Port B write
|
||||
DEVCB_INPUT_PORT("MD3"), // Port C write
|
||||
DEVCB_NULL // Port C read
|
||||
};
|
||||
|
||||
static I8255A_INTERFACE( ppi8255_intf_2 )
|
||||
{
|
||||
DEVCB_NULL, // Port A read
|
||||
DEVCB_NULL, // Port A write
|
||||
DEVCB_INPUT_PORT("PB"), // Port B read
|
||||
DEVCB_NULL, // Port B write
|
||||
DEVCB_DRIVER_MEMBER(midcoin24cdjuke_state, kb_row_r), // Port C read
|
||||
DEVCB_DRIVER_MEMBER(midcoin24cdjuke_state, kb_col_w) // Port C write
|
||||
};
|
||||
|
||||
static I8255A_INTERFACE( ppi8255_intf_3 )
|
||||
{
|
||||
DEVCB_NULL, // Port A read
|
||||
DEVCB_NULL, // Port A write
|
||||
DEVCB_NULL, // Port B read
|
||||
DEVCB_UNMAPPED, // Port B write
|
||||
DEVCB_INPUT_PORT("MD4"), // Port C read
|
||||
DEVCB_NULL // Port C write
|
||||
};
|
||||
|
||||
|
||||
static MACHINE_CONFIG_START( midcoin24cdjuke, midcoin24cdjuke_state )
|
||||
/* basic machine hardware */
|
||||
MCFG_CPU_ADD("maincpu", Z80,6000000) /* ? MHz */
|
||||
MCFG_CPU_PROGRAM_MAP(midcoin24cdjuke_map)
|
||||
// MCFG_CPU_VBLANK_INT_DRIVER("screen", midcoin24cdjuke_state, irq0_line_hold)
|
||||
MCFG_CPU_IO_MAP(midcoin24cdjuke_io)
|
||||
MCFG_CPU_PERIODIC_INT_DRIVER(midcoin24cdjuke_state, irq0_line_hold, 500)
|
||||
|
||||
MCFG_DEFAULT_LAYOUT(layout_24cdjuke)
|
||||
|
||||
MCFG_I8255A_ADD( "ic11", ppi8255_intf_1 )
|
||||
MCFG_I8255A_ADD( "ic25", ppi8255_intf_2 )
|
||||
MCFG_I8255A_ADD( "ic31", ppi8255_intf_3 )
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
|
||||
@ -98,11 +323,12 @@ ROM_START( 24cdjuke )
|
||||
ROM_REGION( 0x4000, "maincpu", 0 )
|
||||
ROM_LOAD( "1.ic5", 0x0000, 0x4000, CRC(df2419ad) SHA1(dd9dd85011d46581dccabcfdb5959a8b018df937) )
|
||||
|
||||
// MAB8441T-T042 internal ROM?
|
||||
ROM_REGION( 0x200, "charset", 0 )
|
||||
ROM_LOAD16_BYTE( "dm74ls471n.ic20", 0x000, 0x100, CRC(d05765e6) SHA1(119ec6ca1a4afa0ea6ab1020ba2a8b02fd434e3f) )
|
||||
ROM_LOAD16_BYTE( "dm74ls471n.ic21", 0x001, 0x100, CRC(e12d5a04) SHA1(be52ee4e4a5ea225fce39c759645a7cf49cea370) )
|
||||
|
||||
// MAB8441T-T042 internal ROM?
|
||||
ROM_REGION( 0x80000, "misc", 0 )
|
||||
ROM_LOAD( "dm74ls471n.ic20", 0x000, 0x100, CRC(d05765e6) SHA1(119ec6ca1a4afa0ea6ab1020ba2a8b02fd434e3f) )
|
||||
ROM_LOAD( "dm74ls471n.ic21", 0x000, 0x100, CRC(e12d5a04) SHA1(be52ee4e4a5ea225fce39c759645a7cf49cea370) )
|
||||
ROM_LOAD( "m1-7611a-5.ic27", 0x000, 0x100, CRC(29b068e8) SHA1(477e2445c58b7d14c56a3ad4050eb22474d56005) )
|
||||
ROM_LOAD( "m1-7611a-5.ic28", 0x000, 0x100, CRC(29b068e8) SHA1(477e2445c58b7d14c56a3ad4050eb22474d56005) )
|
||||
ROM_END
|
||||
|
69
src/mame/layout/24cdjuke.lay
Normal file
69
src/mame/layout/24cdjuke.lay
Normal file
@ -0,0 +1,69 @@
|
||||
<?xml version="1.0"?>
|
||||
<mamelayout version="2">
|
||||
<element name="digit" defstate="0">
|
||||
<led16segsc>
|
||||
<color red="0.0" green="0.6" blue="1.0" />
|
||||
</led16segsc>
|
||||
</element>
|
||||
<element name="background">
|
||||
<rect>
|
||||
<bounds left="0" top="0" right="1" bottom="1" />
|
||||
<color red="0.0" green="0.0" blue="0.0" />
|
||||
</rect>
|
||||
</element>
|
||||
|
||||
<view name="Internal Layout">
|
||||
<bezel element="background">
|
||||
<bounds left="00" top="00" right="920" bottom="700" />
|
||||
</bezel>
|
||||
|
||||
<bezel name="digit0" element="digit">
|
||||
<bounds x="10" y="10" width="50" height="80" />
|
||||
</bezel>
|
||||
<bezel name="digit1" element="digit">
|
||||
<bounds x="70" y="10" width="50" height="80" />
|
||||
</bezel>
|
||||
<bezel name="digit2" element="digit">
|
||||
<bounds x="130" y="10" width="50" height="80" />
|
||||
</bezel>
|
||||
<bezel name="digit3" element="digit">
|
||||
<bounds x="190" y="10" width="50" height="80" />
|
||||
</bezel>
|
||||
<bezel name="digit4" element="digit">
|
||||
<bounds x="250" y="10" width="50" height="80" />
|
||||
</bezel>
|
||||
<bezel name="digit5" element="digit">
|
||||
<bounds x="310" y="10" width="50" height="80" />
|
||||
</bezel>
|
||||
<bezel name="digit6" element="digit">
|
||||
<bounds x="370" y="10" width="50" height="80" />
|
||||
</bezel>
|
||||
<bezel name="digit7" element="digit">
|
||||
<bounds x="430" y="10" width="50" height="80" />
|
||||
</bezel>
|
||||
<bezel name="digit8" element="digit">
|
||||
<bounds x="490" y="10" width="50" height="80" />
|
||||
</bezel>
|
||||
<bezel name="digit9" element="digit">
|
||||
<bounds x="550" y="10" width="50" height="80" />
|
||||
</bezel>
|
||||
<bezel name="digit10" element="digit">
|
||||
<bounds x="610" y="10" width="50" height="80" />
|
||||
</bezel>
|
||||
<bezel name="digit11" element="digit">
|
||||
<bounds x="670" y="10" width="50" height="80" />
|
||||
</bezel>
|
||||
<bezel name="digit12" element="digit">
|
||||
<bounds x="730" y="10" width="50" height="80" />
|
||||
</bezel>
|
||||
<bezel name="digit13" element="digit">
|
||||
<bounds x="790" y="10" width="50" height="80" />
|
||||
</bezel>
|
||||
<bezel name="digit14" element="digit">
|
||||
<bounds x="850" y="10" width="50" height="80" />
|
||||
</bezel>
|
||||
<bezel name="digit15" element="digit">
|
||||
<bounds x="910" y="10" width="50" height="80" />
|
||||
</bezel>
|
||||
</view>
|
||||
</mamelayout>
|
@ -1989,6 +1989,8 @@ $(MAMEOBJ)/misc.a: \
|
||||
# layout dependencies
|
||||
#-------------------------------------------------
|
||||
|
||||
$(DRIVERS)/24cdjuke.o: $(LAYOUT)/24cdjuke.lh
|
||||
|
||||
$(DRIVERS)/30test.o: $(LAYOUT)/30test.lh
|
||||
|
||||
$(DRIVERS)/8080bw.o: $(LAYOUT)/cosmicm.lh \
|
||||
|
Loading…
Reference in New Issue
Block a user