Page 3 of 5

Re: PSX CD-Player only Project

Posted: October 13th, 2012, 7:01 am
by Type 79
Graphics are low priority at my list, as that lcd is main display in this project.

Top priority now is to get that software boot from cartridge. With using runrom or exe2rom i can make rom that works, BUT it needs bootdisc (any official blackdisc) to start.

I also have some sources of booting cartridge, but they are in asm and i have no idea how to use that in my c-source.

So how do i get my software boot from cartridge similar way as Caetla? Power-on and it's running without any bootlogos.

Re: PSX CD-Player only Project

Posted: October 13th, 2012, 3:08 pm
by Shadow
Type 79 wrote:Graphics are low priority at my list, as that lcd is main display in this project.

Top priority now is to get that software boot from cartridge. With using runrom or exe2rom i can make rom that works, BUT it needs bootdisc (any official blackdisc) to start.

I also have some sources of booting cartridge, but they are in asm and i have no idea how to use that in my c-source.

So how do i get my software boot from cartridge similar way as Caetla? Power-on and it's running without any bootlogos.
Not sure. You will just have to use the bootdisc method for now :shrug

Re: PSX CD-Player only Project

Posted: October 14th, 2012, 1:10 am
by Type 79
Image
[youtube]http://www.youtube.com/watch?v=OXJXVrl8QiU[/youtube]

Boots from cartridge, but needs bootdisc (any official blackdisc).

Re: PSX CD-Player only Project

Posted: October 14th, 2012, 5:19 pm
by Shadow
It will do :shrug You don't need to use an Xplorer though - any fake cartridge flashed with it will work so you can make a dedicated system.

Re: PSX CD-Player only Project

Posted: October 14th, 2012, 7:13 pm
by Type 79
haunted wrote:You don't need to use an Xplorer though - any fake cartridge flashed with it will work so you can make a dedicated system.
Yep, that's why i got some old GameSharks.

But someday i will make that boot work properly, even if i have to write whole damn thing in asm :evil: (too bad i don't know much asm)

Re: PSX CD-Player only Project

Posted: October 29th, 2012, 4:09 am
by Type 79
Commander's New Brain, MSP430G2452.
Image

Buttonboard from some old crt-display, to control cd-player.

Re: PSX CD-Player only Project

Posted: October 29th, 2012, 1:53 pm
by Shadow
Interesting IC. http://www.ti.com/lit/ds/symlink/msp430g2452.pdf

Keep up the great work though! :clap
Hopefully it will make it onto Hack a Day :shrug

Re: PSX CD-Player only Project

Posted: November 18th, 2012, 9:44 pm
by Type 79
First test of tray system from old dvd-drive, with PSone laser assembly. No problems with weight.


Re: PSX CD-Player only Project

Posted: November 18th, 2012, 10:28 pm
by Shadow
Looks good!

Status update 24.11.2012

Posted: November 25th, 2012, 9:17 am
by Type 79
Image

- New buttonboard, 8 buttons
- CD-tray control systema
- Background picture on tv



Remotecontrol, extensioncables for laser-unit, and case still needed.

Re: PSX CD-Player only Project

Posted: January 20th, 2013, 10:15 pm
by Topcronos
Hi type79,

Very nice work indeed !
Any progress made so far since then ?
Did you manage to get it loaded without bootdisc ?

PlayStation CD-Player - May Day 2013 release

Posted: May 1st, 2013, 10:15 pm
by Type 79
PlayStation CD-Player, May Day 2013 release

Image
PlayStation CD-Player with 16x2 lcd-display
---------------------------------------------
PlayStation Serial -->-- MSP430 -->-- HD44780


Burn cdplayer.cue to cd with ImgBurn.
You need modchip to boot burned disc on PlayStation (or use swaptrick, or some other way..).

Use Energia IDE with MSP430 LaunchPad to program your microcontroller.


Controls, Gamepad 1:
X - Play/Pause
[] - Stop
R1 - Next track
L1 - Previous track
R2 - Forward
L2 - Rewind
Start - LCD Timemode, Track/CD
Select - TV mode, PAL/NTSC

Files:
PSCDDisplay/PSCDDisplay.ino - Sourcecode
PSCDDisplay-schematic.png - Schematics
cdplayer.bin - cd-image of CD-Player bootdisc
cdplayer.cue - cue for cd-image
readme.txt - this file

Links:
http://www.ti.com/tool/msp-exp430g2
http://energia.nu/
http://www.imgburn.com/


- SCPH79, May Day 2013
Download: http://ge.tt/3flyUVf/v/0



Homepage: http://www.elisanet.fi/6581/CDPlayer/

Re: PSX CD-Player only Project

Posted: May 1st, 2013, 11:04 pm
by Shadow
It appears that you have sector problems. This is caused from mastering a PSX CD-ROM incorrectly.
If you need help knowing how to master it correctly, just let me know and I'll get that guide written and hopefully moved to the help section.
sector_problems.png
Here is a mirror for you/others should the link above die:
PlayStation_CD-Player.May_day_2013-SCPH79.zip

Re: PSX CD-Player only Project

Posted: June 10th, 2013, 8:04 am
by Type 79
Image
Added some eye candy, splinus stolen from old vAn hElsing-source.
cdplayer_candy_prepeek.psx

Re: PSX CD-Player only Project

Posted: July 29th, 2013, 6:09 am
by Type 79

Booting from cartridge without bootdisc.
Some delay at start (spuinit, cdinit or something..).

Thanks to sicklebrick for new romloader!

Re: PSX CD-Player only Project

Posted: July 29th, 2013, 3:48 pm
by Shadow
Sicklebrick needs add this assembly into his build.
It should bypass the BIOS boot sequence and just load what is needed.
FASTBOOT.S

Re: PSX CD-Player only Project

Posted: July 29th, 2013, 4:46 pm
by sickle
Hah, awesome!
Cheers Shadow :D - I'll get to work figuring that out!
Where did you disassemble it from btw?

Re: PSX CD-Player only Project

Posted: July 29th, 2013, 5:26 pm
by Shadow
I've had this file for a while now as a well known PSX scener sent it to me.
It was disassembled from CAETLA I beleive ;)

Re: PSX CD-Player only Project

Posted: July 29th, 2013, 6:57 pm
by sickle
Cool, very helpful - thanks :)
Only took a bit of patching (register names, explicitly loading the jump table), but it boots perfectly now! I initially thought it was something SPU relted as some demos like Sadtro would still run but lag like the SPU was causing some kinda blocking. I suppose it's possible to figure that out now though.

http://www.psxdev.net/forum/viewtopic.php?f=60&t=393

Re: PSX CD-Player only Project

Posted: July 29th, 2013, 8:45 pm
by Type 79

:dance

edit:
Image
cdplayer.psx