Search found 7 matches

by Laban
June 22nd, 2019, 10:56 pm
Forum: Miscellaneous
Topic: Boot logo interruption?
Replies: 4
Views: 14535

Re: Boot logo interruption?

Ah thanks. I ended up putting together this rather more verbose version (it waits for the audio + reverb to actually fade out and fades out the PS logo image): void WaitForBootLogo() { #define BOOT_LOGO_WAIT_TIME 5000 u_char flags[24]; u_long currentTick; u_long lastTick; u_long elapsedMillis; int n...
by Laban
June 17th, 2019, 9:20 pm
Forum: Miscellaneous
Topic: Boot logo interruption?
Replies: 4
Views: 14535

Re: Boot logo interruption?

OK, Rubber ducking saves the day again, at least partially :lol: Licensing the ISO for a region makes it display fully (makes sense as it does display the licensed region after all). It still does cut off after about a second however (so there's no fade out or enough time for the audio to finish pla...
by Laban
June 17th, 2019, 9:09 pm
Forum: Miscellaneous
Topic: Boot logo interruption?
Replies: 4
Views: 14535

Boot logo interruption?

I'm experiencing an odd issue where the BIOS boot-up PlayStation logo gets frozen in a non-completed state on the screen for about a second (see the attached image) and then appears to get interrupted by my own program starting up (I would expect it to stick around for several seconds and fade out b...
by Laban
June 17th, 2019, 8:47 pm
Forum: General Chat & Messaging
Topic: Looking for ASSEMblergames members
Replies: 2
Views: 7135

Re: Looking for ASSEMblergames members

rama3 wrote: May 16th, 2019, 2:13 am Who do you want to contact?
I can pm them and link to this thread here.
Sorry for the very late reply (I have to admit I usually just browse this site for reading without being logged in).
I already got help to contact the person in question from another user vi PM, but thanks for offering. :)
by Laban
May 14th, 2019, 7:47 pm
Forum: General Chat & Messaging
Topic: Looking for ASSEMblergames members
Replies: 2
Views: 7135

Looking for ASSEMblergames members

I've been looking for a DTL-T10000 for several months and actually found one for sale over on Assemblergames a couple of days ago. Unfortunately that site hasn't accepted any newly registered users for the last 14 months, so there's no way for me to join. I imagine some people around here may have a...
by Laban
March 30th, 2019, 10:04 pm
Forum: Programming/CPU
Topic: Some optimization questions
Replies: 0
Views: 13383

Some optimization questions

So I've got a large level-style 3D model made up of roughly 2800 polys (most of them goraud-shaded triangles). This thing takes about 6 vertical blanks (using PAL) to draw, which feels a bit overly slow to me so I'm not entirely sure if the problem lies mainly in rendering time or other processing. ...
by Laban
March 23rd, 2019, 11:31 pm
Forum: Input/Output
Topic: CD-ROM data read emulation
Replies: 0
Views: 15990

CD-ROM data read emulation

This may not necessarily be posted in the correct section (feel free to move it if so), but it felt the most fitting. I was wondering if there's any best practice or otherwise common approach to emulate CD reads from disk (ie. a HDD folder) when testing a PS-EXE via an emulator (No$PSX in my case)? ...