Author Topic: Need help adding drivers  (Read 3089 times)

Offline neocvera

  • Newbies
  • *
  • Posts: 39
  • Karma: +1/-0
Need help adding drivers
« on: April 23, 2021, 05:35:14 PM »
Hello,

I've been tinkering with building/ compiling FBNEO and was wondering if I could get some guidance with respect to adding support to a new game?

So the game isn't against the rules or anything - its NEOTRIS_BETA 2 - which is free online directly from the dev team. I wanted to use that game to learn how to build a driver/ add support for it.

The source files I added to include:
d_neogeo.cpp
driverlist_neogeo.h
driverlist.h

am I missing any other source files that impacted by adding a new driver?

Appreciate any guidance,

Chris

Offline barbudreadmon

  • Administrator
  • *****
  • Posts: 1091
  • Karma: +59/-1
  • Helper
Re: Need help adding drivers
« Reply #1 on: April 24, 2021, 02:38:49 AM »
1. afaik there is no driverlist_neogeo.h in FBNeo
2. driverlist.h is something that is generated at build time so i don't recommend editing it manually
3. neotris is already supported (https://github.com/finalburnneo/FBNeo/blob/95832a5671af88564fbb54fc1e7a8eab9f6fce60/src/burn/drv/neogeo/d_neogeo.cpp#L20463-L20498), is there a newer version ?

Offline neocvera

  • Newbies
  • *
  • Posts: 39
  • Karma: +1/-0
Re: Need help adding drivers
« Reply #2 on: April 25, 2021, 11:08:49 AM »
Well, hell. Lol thank you sir.