-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a skeleton driver for Alcatel Web Touch One web phone #12534
Conversation
New systems marked not working ------------------------------ Alcatel Web Touch One (model 2840, Terra, Spanish) [Arcade Hacker, ClawGrip]
src/mame/skeleton/webtouchone.cpp
Outdated
m_screen->set_visarea(0, 640-1, 0, 480-1); | ||
m_screen->set_screen_update(FUNC(webtouchone_state::screen_update_webtouchone)); | ||
|
||
SPEAKER(config, "mono").front_left(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If there's one speaker only then this should be front_center()
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed, thanks!
|
||
CPU PCB | ||
____________________________________________________________________ | ||
| Xtal | | ||
| 25.416 MHz | | ||
| _____________ _______ | | ||
| | CONEXANT | |MC3403| ___ | | ||
| | RVC3366ACFW| | | | | ||
| | R6749-24 | ________ ________ 74HC4053->| | | | ||
| | | |74HC4053||74HC4053| |__| | | ||
| |____________| ___ _______ | | ||
| _______ 34119->| | |MC3403| | | ||
| 74AHCT574 |__| | | ||
| ____________ ____________ | | ||
| |KM416S4030CT| |KM416S4030CT| | | ||
| |____________| |____________| | | ||
| ____________ __________ | | ||
| |KM29U64000T| _____________ |74HCT541 | | | ||
| |___________| | Motorola | |_________| | | ||
| | XPC823ZT66A| __________ | | ||
| Xtal | | |74HCT541 | | | ||
| 32.768 MHz | | |_________| | | ||
| |____________| | | ||
| | | ||
| _______ | | ||
| 3BN62121AAAF KAZZA 01 |ST 324| | | ||
|___________________________________________________________________| | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Legit puzzled about what RAMDAC this uses, MPC823 datasheet mentions having one for the LCD interface. Where's TFT connector?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cannot remember, I dumped it four years ago, and I only keep photos of the disconnected PCBs.
There is some more hardware info here: https://www.minitel-alcatel.fr/documents/WebPhones/SES%20Hard%202840.pdf
src/mame/skeleton/webtouchone.cpp
Outdated
The phone asks for an adminstrative password for performing a factory reset. | ||
|
||
Hardware info for model 2840: | ||
-CPU: Motorola Power PC 823 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PowerPC doesn’t have a space.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed!
src/mame/skeleton/webtouchone.cpp
Outdated
// YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME FLAGS | ||
COMP( 1999, wto2840sp, 0, 0, webtouchone, webtouchone, webtouchone_state, empty_init, "Alcatel", "Alcatel Web Touch One (model 2840, Terra, Spanish)", MACHINE_IS_SKELETON ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You don’t need to repeat “Alcatel” in the description. The product name is just “Web Touch One”.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed!
New systems marked not working
Alcatel Web Touch One (model 2840, Terra, Spanish) [Arcade Hacker, ClawGrip]