Skip to content

Commit 07b62ad

Browse files
committed
New systems marked not working
------------------------------ Clie PEG-T650C [Guru]
1 parent 25587a6 commit 07b62ad

File tree

3 files changed

+91
-2
lines changed

3 files changed

+91
-2
lines changed

src/mame/capcom/lwings.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1685,7 +1685,7 @@ For the Trojan sets, Capcom labeled all program ROMs as TB 04, TB 05 & TB 06. S
16851685
16861686
*/
16871687

1688-
ROM_START( trojan ) // One of these sets is rev A - need to verify
1688+
ROM_START( trojan ) // This set is likely rev A - need to verify
16891689
ROM_REGION( 0x20000, "maincpu", 0 ) /* 64k for code + 3*16k for the banked ROMs images */
16901690
ROM_LOAD( "tb_04.10n", 0x00000, 0x8000, CRC(c1bbeb4e) SHA1(248ae4184d25b642b282ef44ac729c0f7952834d) )
16911691
ROM_LOAD( "tb_06.13n", 0x10000, 0x8000, CRC(d49592ef) SHA1(b538bac3c73f35474cc6745a4e4dc3ab6217eaac) )
@@ -1732,7 +1732,7 @@ ROM_START( trojan ) // One of these sets is rev A - need to verify
17321732
ROM_LOAD( "tbb-1.1e", 0x0100, 0x0100, CRC(5052fa9d) SHA1(8cd240f4795a7ae76499573c09069dba37182be2) ) /* priority (not used) */
17331733
ROM_END
17341734

1735-
ROM_START( trojana ) // One of these sets is rev A - need to verify
1735+
ROM_START( trojana )
17361736
ROM_REGION( 0x20000, "maincpu", 0 ) /* 64k for code + 3*16k for the banked ROMs images */
17371737
ROM_LOAD( "tb_04.10n", 0x00000, 0x8000, CRC(0113a551) SHA1(933ebaf73fb70772fc2cf2b9143bf00757505772) ) // SLDH
17381738
ROM_LOAD( "tb_06.13n", 0x10000, 0x8000, CRC(aa127a5b) SHA1(0b7115c2ffe8456ef463e22d68e03a2e396abf92) ) // SLDH

src/mame/mame.lst

+3
Original file line numberDiff line numberDiff line change
@@ -42507,6 +42507,9 @@ uvw1800 // 199? Sony Betacam-SP UVW-1800
4250742507
@source:sony/bvm.cpp
4250842508
bvm20f1e //
4250942509

42510+
@source:sony/clie_db.cpp
42511+
t650c //
42512+
4251042513
@source:sony/dfs500.cpp
4251142514
dfs500 // 1994 Sony DFS-500 Video Mixer
4251242515

src/mame/sony/clie_db.cpp

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
// license:BSD-3-Clause
2+
// copyright-holders:
3+
4+
/*
5+
Skeleton driver for Sony Clie PDAs running on Motorola Dragonball CPU.
6+
Later series ran on ARM based SoCs and should go in a separate driver.
7+
8+
Sony Clie PEG T650C main components (PCB YSX-1230 MP-43):
9+
- Motorola Super VZ DragonBall MC68SZ328AVH66
10+
- MediaQ MQ1100-CBC
11+
- Sony CXD3523AGG
12+
- Mosel-Vitelic V54C3128164VAT7
13+
- Sony CXD1859GA
14+
*/
15+
16+
#include "emu.h"
17+
18+
#include "machine/mc68328.h"
19+
20+
#include "screen.h"
21+
#include "speaker.h"
22+
23+
24+
namespace {
25+
26+
class clie_db_state : public driver_device
27+
{
28+
public:
29+
clie_db_state(const machine_config &mconfig, device_type type, const char *tag)
30+
: driver_device(mconfig, type, tag),
31+
m_maincpu(*this, "maincpu")
32+
{ }
33+
34+
void t650c(machine_config &config);
35+
36+
private:
37+
required_device<cpu_device> m_maincpu;
38+
39+
void program_map(address_map &map);
40+
41+
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
42+
};
43+
44+
45+
uint32_t clie_db_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
46+
{
47+
return 0;
48+
}
49+
50+
51+
void clie_db_state::program_map(address_map &map)
52+
{
53+
map(0x00000000, 0x007fffff).rom();
54+
}
55+
56+
57+
static INPUT_PORTS_START( t650c )
58+
INPUT_PORTS_END
59+
60+
void clie_db_state::t650c(machine_config &config)
61+
{
62+
MC68EZ328(config, m_maincpu, 66'000'000); // unknown clock, 66 MHz according to flyer
63+
m_maincpu->set_addrmap(AS_PROGRAM, &clie_db_state::program_map);
64+
65+
screen_device&screen(SCREEN(config, "screen", SCREEN_TYPE_LCD));
66+
screen.set_refresh_hz(60);
67+
screen.set_size(320, 320); // 320 x 320 according to flyer
68+
screen.set_visarea(0, 320 - 1, 0, 320 - 1);
69+
screen.set_screen_update(FUNC(clie_db_state::screen_update));
70+
71+
// TODO: MediaQ MQ1100-CB LCD controller
72+
73+
SPEAKER(config, "speaker").front_center();
74+
// TODO: CXD1859GA audio chip
75+
}
76+
77+
78+
ROM_START( t650c )
79+
ROM_REGION16_BE( 0x800000, "maincpu", 0 )
80+
ROM_LOAD16_WORD_SWAP( "sony_clie_peg_t650c_flashrom.bin", 0x000000, 0x800000, CRC(60855a64) SHA1(e08350e64438c62401041aaa335def08aa0decb7) ) // TODO: factory-reset
81+
ROM_END
82+
83+
} // anonymous namespace
84+
85+
86+
SYST( 2002, t650c, 0, 0, t650c, t650c, clie_db_state, empty_init, "Sony", "Clie PEG-T650C", MACHINE_IS_SKELETON )

0 commit comments

Comments
 (0)