Author Topic: New driver I'm working on for FBA :)  (Read 16963 times)

Offline iq_132

  • Administrator
  • *****
  • Posts: 3724
  • Karma: +411/-0
  • Definitely not Dink!
    • NeoSource
New driver I'm working on for FBA :)
« on: July 03, 2007, 08:31:07 PM »
Cheers to whoever can guess what system it is.

btw, HQ4x filter on the last image :)


Offline Barry Harris

  • dontbeabarry
  • *
  • Posts: 1785
  • Karma: +0/-65535
  • I'm Barry Harris and I like to f*** people over
Re: New driver I'm working on for FBA :)
« Reply #1 on: July 04, 2007, 01:50:40 AM »
Cool - CHIP-8. :)
Account of Barry Harris; the traitor.
Send me an e-mail at barry@fbalpha.com letting me know how big of a piece of sh** I am.

Offline iq_132

  • Administrator
  • *****
  • Posts: 3724
  • Karma: +411/-0
  • Definitely not Dink!
    • NeoSource
Re: New driver I'm working on for FBA :)
« Reply #2 on: July 04, 2007, 09:47:56 PM »
Yup :) And Super Chip as well.


Offline iq_132

  • Administrator
  • *****
  • Posts: 3724
  • Karma: +411/-0
  • Definitely not Dink!
    • NeoSource
Re: New driver I'm working on for FBA :)
« Reply #3 on: July 06, 2007, 02:12:24 AM »
I've got it passing most of the tests :)


Offline iq_132

  • Administrator
  • *****
  • Posts: 3724
  • Karma: +411/-0
  • Definitely not Dink!
    • NeoSource
Re: New driver I'm working on for FBA :)
« Reply #4 on: July 06, 2007, 02:13:39 AM »
More...

The only one that doesn't work is 'scroll test'


Offline iq_132

  • Administrator
  • *****
  • Posts: 3724
  • Karma: +411/-0
  • Definitely not Dink!
    • NeoSource
Re: New driver I'm working on for FBA :)
« Reply #5 on: July 06, 2007, 02:15:11 AM »
Implemented some preset colors :)


Offline iq_132

  • Administrator
  • *****
  • Posts: 3724
  • Karma: +411/-0
  • Definitely not Dink!
    • NeoSource
Re: New driver I'm working on for FBA :)
« Reply #6 on: July 08, 2007, 10:39:46 PM »
I was comparing some games against Fish'n'chips and Vision 8, some pretty good chip-8 emulators and
spotted this.  :eek:


#1 FnC is glitched
#2 Vision 8 is glitched
#3 FBA is perfect


Offline iq_132

  • Administrator
  • *****
  • Posts: 3724
  • Karma: +411/-0
  • Definitely not Dink!
    • NeoSource
Re: New driver I'm working on for FBA :)
« Reply #7 on: July 09, 2007, 04:42:09 PM »
Here's the romset I'm using, afaik all of these are public domain (if not, someone please contact me)


Offline iq_132

  • Administrator
  • *****
  • Posts: 3724
  • Karma: +411/-0
  • Definitely not Dink!
    • NeoSource
Re: New driver I'm working on for FBA :)
« Reply #8 on: July 09, 2007, 06:15:22 PM »
Here's the driver. Enjoy. :)


Offline CaptainCPS

  • FBNeo Dev
  • ******
  • Posts: 1513
  • Karma: +127/-0
  • FB Alpha Team
    • CaptainCPS's Home
Re: New driver I'm working on for FBA :)
« Reply #9 on: July 10, 2007, 12:47:34 AM »
Gonna check this interesting stuff asap :biggrin:, I still remember when you told me that you was going to work with this on MSN ^^

Congrats IQ, it seems that FBA is the best on this stuff right now with your driver ^^

Take Care! SeeYaa!
 :biggrin:
« Last Edit: July 10, 2007, 12:48:54 AM by CaptainCPS-X »

Offline James33

  • Expert
  • *****
  • Posts: 532
  • Karma: +3/-0
  • The Mame Man
    • Emulation Zone
Re: New driver I'm working on for FBA :)
« Reply #10 on: July 10, 2007, 05:26:28 AM »
I am going to honest and say, I have never heard of this system . Can anyone point me to where I might get more info?
IQ Forum Member

Offline iq_132

  • Administrator
  • *****
  • Posts: 3724
  • Karma: +411/-0
  • Definitely not Dink!
    • NeoSource
Re: New driver I'm working on for FBA :)
« Reply #11 on: July 10, 2007, 11:13:06 AM »


Offline James33

  • Expert
  • *****
  • Posts: 532
  • Karma: +3/-0
  • The Mame Man
    • Emulation Zone
Re: New driver I'm working on for FBA :)
« Reply #12 on: July 11, 2007, 03:48:02 AM »
Thanks IQ :)
IQ Forum Member

Offline hap

  • Newbies
  • *
  • Posts: 19
  • Karma: +5/-0
Re: New driver I'm working on for FBA :)
« Reply #13 on: July 27, 2007, 07:50:55 AM »
I was comparing some games against Fish'n'chips and Vision 8, some pretty good chip-8 emulators and
spotted this.  :eek:


#1 FnC is glitched
#2 Vision 8 is glitched
#3 FBA is perfect
Animal Race (and some other native CHIP-8 games that were designed for the COSMAC VIP in the 70s) relies on the I register increasing after a memory load/store instruction. This "feature" is not part of Erik Bryntse's SCHIP specification, hence it doesn't work on FNC in SCHIP mode. Use FNC's VIP CHIP-8 emulated mode for this. Note that some newer SCHIP games do rely on the I register not increasing.

Offline iq_132

  • Administrator
  • *****
  • Posts: 3724
  • Karma: +411/-0
  • Definitely not Dink!
    • NeoSource
Re: New driver I'm working on for FBA :)
« Reply #14 on: July 27, 2007, 05:24:03 PM »
First and foremost, welcome. :)

Quote
Animal Race (and some other native CHIP-8 games that were designed for the COSMAC VIP in the 70s) relies on the I register increasing after a memory load/store instruction. This "feature" is not part of Erik Bryntse's SCHIP specification, hence it doesn't work on FNC in SCHIP mode. Use FNC's VIP CHIP-8 emulated mode for this. Note that some newer SCHIP games do rely on the I register not increasing.
Very interesting ^^  I hadn't bothered to track that down. :)  And yeah, I do have it set up so that 'I' only increases in CHIP-8.


BTW, just out of my own curiosity, how did you find this thread?