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
Re: PSX CD-Player only Project
Posted: October 14th, 2012, 1:10 am
by Type 79
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 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 (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.
Buttonboard from some old crt-display, to control cd-player.
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
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 - 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.