How often do Homebrews implement "standard" Neo-Geo logic?

Burning Fight!!

NIS America fan & Rent Free tenant
10 Year Member
Joined
Jan 12, 2014
Posts
4,336
I'm talking about letting the bios do the logo animation, have a predictable gameplay flow and UI elements like in the official Neo manual, actually being Arcade ready, etc.

Are those a dealbreaker to you? Having a Neo-Geo cartridge that behaves differently from official software seems kinda common, from small homebrew projects that don't bother with anything but the game itself to NGDev games that have their own menus and shenanigans.

I'm just asking because it doesn't seem THAT difficult to implement that stuff, especially in areas the BIOS can help (I was very surprised to learn the How to Play screen on Nam-1975 was BIOS provided for instance), but also I don't know if those things are consistent or available throughout the range of MVS/AES hardware (excluding Neo CD naturallY which is another beast of its own).

Aside from technical difficulties the only "problematic" thing about it might be the Neo logo/eye catcher because of Trademark infringement but that doesn't seem like something nu-SNK will actively fight you over unless you also include their logos on packaging and promotional material.
 

Burning Fight!!

NIS America fan & Rent Free tenant
10 Year Member
Joined
Jan 12, 2014
Posts
4,336

Found this video by Razoola. Was this ever released? Having no luck using the forum's search function.
 

max 330 mega

The Almighty Bunghole
15 Year Member
Joined
Dec 14, 2004
Posts
4,300
I've never seen or heard of that program before. Razoola is away from the scene currently, so I guess you'll need to wait until and if he returns to programming neo stuff to ask him about it.
 

Hine62

Krauser's Shoe Shiner
Joined
Jul 15, 2005
Posts
230
I've done some research on this... here is a link to the routines that can handle program flow such as that in the neogeo manual. NeoGeo User Sub Routines

Just by changing the line in the crt0_cart.s file you can get the NEO-GEO logo to animate. The sound will probably play also...

_EYE_CATCHER = 0x00 /*;eye catcher (0-common 1-custom 2-off)*/

I did a quick try with my current project and it animated just like the real logo, but the graphic was wrong and sound was missing. This means that graphics and sound need to be in the correct place, which is most likely why it is turned off.

Here is a link on the Eyecatcher
 

mikew

Krauser's Shoe Shiner
10 Year Member
Joined
Mar 28, 2012
Posts
245
Found this video by Razoola. Was this ever released? Having no luck using the forum's search function.

If I remember correctly, this was a framework Raz was going to release for homebrew development when we were working on the pc2neo USB code.
 

Burning Fight!!

NIS America fan & Rent Free tenant
10 Year Member
Joined
Jan 12, 2014
Posts
4,336
I've done some research on this... here is a link to the routines that can handle program flow such as that in the neogeo manual. NeoGeo User Sub Routines

Just by changing the line in the crt0_cart.s file you can get the NEO-GEO logo to animate. The sound will probably play also...

_EYE_CATCHER = 0x00 /*;eye catcher (0-common 1-custom 2-off)*/

I did a quick try with my current project and it animated just like the real logo, but the graphic was wrong and sound was missing. This means that graphics and sound need to be in the correct place, which is most likely why it is turned off.

Here is a link on the Eyecatcher

Thanks, I suppose you could supply a non-neo logo (eg. your own ficticious software label) but I don't know if that would be too tacky for long time neo owners. Nice to know that the sound (MML?) is supplied by the cart, too.

If I remember correctly, this was a framework Raz was going to release for homebrew development when we were working on the pc2neo USB code.

Too bad but I suppose that's cool for actually looking at stuff myself and not using his code as a crutch. Would be nice to take a peek at, still.
 
Last edited:
Top