Search found 74 matches
- Wed Nov 25, 2015 5:02 am
- Forum: NES Hardware and Flash Equipment
- Topic: Hi-Def NES HDMI Adapter for the NES
- Replies: 624
- Views: 309509
Re: Hi-Def NES HDMI Adapter for the NES
It might have been conceivable based on half-remembered past insinuations about implementing a subset of CopyNES in the mod. CopyNES includes a 6502 step debugger. The portion of the CopyNES that is not included in the HDMI nes mod, is the Step debugger, and NSF playback. This is mainly due to the ...
- Fri Oct 30, 2015 9:34 pm
- Forum: NES Hardware and Flash Equipment
- Topic: Hi-Def NES HDMI Adapter for the NES
- Replies: 624
- Views: 309509
Re: Hi-Def NES HDMI Adapter for the NES
Just poked into the copynes lite bios, contained within the update, and see that none of the code space optimizations made it in. It seems to be the original bios.
At least my code changes that made vram/wram testing non-destructive made it in. 
- Fri May 30, 2014 3:10 am
- Forum: SNESdev
- Topic: Legible SNES Schematics
- Replies: 113
- Views: 66464
Re: Legible SNES Schematics
One thing to do, after the scans, is to etch away the copper layers on the top and bottom, then shine a light through the board. If there is more than 2 layers, the copper in the middle layers will block the light where ever it is present. On the other hand, this will also confirm it being 2 layers,...
- Tue May 06, 2014 3:36 am
- Forum: NES Hardware and Flash Equipment
- Topic: Sealie UNROM 512 (retrousb.com)
- Replies: 3
- Views: 3019
Re: Sealie UNROM 512 (retrousb.com)
1. Correct on both counts. 2. Battle Kid 2 is not using the flash at all. In fact, the only part of the board it is using, in the oversize UxROM bit. I have however created a hack that takes advantage of the flash capability. Taking advantage of it on the real cart, requires modding it though, (spec...
- Tue Apr 29, 2014 12:12 pm
- Forum: Homebrew Projects
- Topic: 2A03 Puritans Album (source code)
- Replies: 12
- Views: 11117
Re: 2A03 Puritans Album (source code)
Submitted that, in modified to mapper 31 form to the fceux svn. Also submitted a patch of my own for the mapper to bizhawk as well.
- Tue Apr 29, 2014 3:12 am
- Forum: Homebrew Projects
- Topic: 2A03 Puritans Album (source code)
- Replies: 12
- Views: 11117
Re: 2A03 Puritans Album (source code)
FYI latest MESS (from svn repo) supports emulation of this PCB, even if our APU emulation is not 100% accurate yet (but recent progresses on the MAME core will soon allow for some improvements) I have followed your choice of mapper 30, of course, since it does not appear to be used... You might wan...
- Wed Jan 22, 2014 11:47 pm
- Forum: SNESdev
- Topic: SPC-700 Test ROMs should be in SPC format: Rationale
- Replies: 16
- Views: 8401
Re: SPC-700 Test ROMs should be in SPC format: Rationale
Really, the Break Instuction shared the same vector as TCall 0, with the diffference that you had to use RTI rather than RET to return. I bet all the other interrupts shared vectors with the TCall instructions, on the processors that supported these interrupts. Really wish they would have at least k...
- Wed Nov 13, 2013 7:09 am
- Forum: NES Music
- Topic: Rockman 4 Minus infinity NSF Rips Request
- Replies: 9
- Views: 7229
- Wed Jan 02, 2013 3:45 pm
- Forum: NES Music
- Topic: Battle Kid 2 - Final NSF
- Replies: 2
- Views: 3126
Re: Battle Kid 2 - Final NSF
For those that prefer an nsfe, here it is. (Fully tagged, and Timed. Sivak had me rip the nsf back around June 2012, from a music only rom.)
Also, Sivak reused a song from his album, Enter the Draconian. The song is Glacial Caverns.
Also, Sivak reused a song from his album, Enter the Draconian. The song is Glacial Caverns.
- Wed Jan 02, 2013 1:36 am
- Forum: SNESdev
- Topic: What happened with SNES CIC reverse engineering?
- Replies: 248
- Views: 192756
Re: What happened with SNES CIC reverse engineering?
It seems links to digikey parts can and do expire. You need to post an actual digikey part number, that can be searched for.
- Tue Jan 01, 2013 7:10 pm
- Forum: SNESdev
- Topic: What happened with SNES CIC reverse engineering?
- Replies: 248
- Views: 192756
Re: What happened with SNES CIC reverse engineering?
In other words, you are busting up bunnyboy's monopoly on his $4 a chip nes ciclone chips.jims cool wrote:
after release in production runs it will cost about $50 for 100 chips!![]()
i'm not setting a release date but it will be soon
- Wed Nov 14, 2012 1:41 pm
- Forum: SNESdev
- Topic: MAD-1, MAD-2, MAD-R differences?
- Replies: 115
- Views: 37126
Re: MAD-1, MAD-2, MAD-R differences?
Simplified the MAD1/MAD1A and the MADR truth logic. /* ------ MAD-1 / MAD-1A Truth Logic ------- */ OUT4 = (!A0 && !MODE) || _ROM || !_RESET; OUT0 = OUT4 || A2; OUT1 = OUT4 || !A2; OUT2 = !((A0 && A1 && A2 && !A3 && _ROM && MODE) || (!A0 && A1 ...
- Wed Nov 14, 2012 4:36 am
- Forum: SNESdev
- Topic: MAD-1, MAD-2, MAD-R differences?
- Replies: 115
- Views: 37126
Re: MAD-1, MAD-2, MAD-R differences?
> Note, / replaced with _, due to the way variable names in C work. Now it looks even more confusing... the !&&|| stuff already confused me a lot. I guess it means NOT, AND, OR, but I never figured out why one would replace that words by punctuation marks. This whole NOT, AND, OR, with !&am...
- Wed Nov 14, 2012 4:29 am
- Forum: SNESdev
- Topic: MAD-1, MAD-2, MAD-R differences?
- Replies: 115
- Views: 37126
Re: MAD-1, MAD-2, MAD-R differences?
And the corrected Truth logic for MAD-R. :) OUT0 = ((!(!A2 && !A3) && !_ROM && !MODE) || _ROM || (A2 && !_ROM && MODE && _RESET) || !_RESET) && (Vbat < Vcc); OUT1 = ((!(A2 && !A3) && !_ROM && !MODE) || _ROM || (!A2 &...
- Wed Nov 14, 2012 4:13 am
- Forum: SNESdev
- Topic: MAD-1, MAD-2, MAD-R differences?
- Replies: 115
- Views: 37126
Re: MAD-1, MAD-2, MAD-R differences?
Okay, tested my MAD1 Truth table logic, and found a bug in it. Here are the correct Truth Tables. :) OUT0 = ((((!A0 && !A2) || A2) && !_ROM && !MODE && _RESET) || _ROM || (A2 && !_ROM && MODE && _RESET) || !_RESET) && (Vbat < Vcc); OUT1...