Are there any problems using homemade rom carts on these new Famicom (Yobo) systems?
Do I have to disable the lock-out chip if using a cart that has one?
Thanks,
T
Search found 132 matches
- Fri Apr 11, 2008 10:21 am
- Forum: NES Hardware and Flash Equipment
- Topic: New Famicom VS NES
- Replies: 29
- Views: 12562
- Fri Apr 11, 2008 10:11 am
- Forum: Reproduction
- Topic: Which carts can be used for homemade roms?
- Replies: 15
- Views: 9120
Which carts can be used for homemade roms?
I've been using a Super Mario Bros. cart for testing my own roms on the NES. I was wondering what other original carts can be used for this purpose?
Thanks again,
T
Thanks again,
T
- Fri Apr 11, 2008 9:00 am
- Forum: Newbie Help Center
- Topic: NES Advantage Joystick
- Replies: 2
- Views: 2393
- Fri Apr 11, 2008 8:58 am
- Forum: NES Hardware and Flash Equipment
- Topic: New Famicom VS NES
- Replies: 29
- Views: 12562
- Fri Apr 11, 2008 8:00 am
- Forum: NES Hardware and Flash Equipment
- Topic: New Famicom VS NES
- Replies: 29
- Views: 12562
New Famicom VS NES
I was wondering if it's possible to play NES carts in the new Famicom systems made by Yobo?
Is there any other new system that will play the old NES carts?
Thanks,
T
Is there any other new system that will play the old NES carts?
Thanks,
T
- Fri Apr 11, 2008 7:13 am
- Forum: Newbie Help Center
- Topic: NES Advantage Joystick
- Replies: 2
- Views: 2393
NES Advantage Joystick
Would the NES Advantage Joystck require special programming for it to work with a homemade rom?
I'll need to read $4016 and $4017?
Thanks,
T
Update: I just learned the Advantage plugs into both controller ports. I thought it only plugged into one controller port, so was a little confused.
Thanks.
I'll need to read $4016 and $4017?
Thanks,
T
Update: I just learned the Advantage plugs into both controller ports. I thought it only plugged into one controller port, so was a little confused.
Thanks.
- Fri Apr 11, 2008 5:39 am
- Forum: Newbie Help Center
- Topic: The Sound Registers
- Replies: 4
- Views: 2675
- Thu Apr 10, 2008 6:00 pm
- Forum: Newbie Help Center
- Topic: The Sound Registers
- Replies: 4
- Views: 2675
Thanks very much. Will study your reply some more and re-post. I was (am) having trouble fully understanding the docs, I did try to use them before posting. Your explanation cleared it all up for me, at least concerning the noise channel and it's volume decay loop. (I should have posted 2 days ago!)...
- Thu Apr 10, 2008 5:18 pm
- Forum: Newbie Help Center
- Topic: The Sound Registers
- Replies: 4
- Views: 2675
The Sound Registers
I am experimenting with the noise channel and writing to it's registers. So we have: $400C $400E $400F I noticed that if bit #5 is set in register $400C you can get a looping effect. I am now trying to figure out of to adjust the loop time, speed it up, slow it down. I think this loop timing is cont...
- Thu Apr 10, 2008 1:12 pm
- Forum: Newbie Help Center
- Topic: Atari 8 Bit Machines
- Replies: 2
- Views: 1884
Thanks. (Sorry, I could have been more specific). I am referring to the 800xl, 600xl, home computers, and about the hardware process of burning a rom onto a chip. I've been messing around with burning NES roms and was wondering if that process is the same for burning Atari roms. Yes, the Lynx looks ...
- Thu Apr 10, 2008 7:29 am
- Forum: Newbie Help Center
- Topic: Atari 8 Bit Machines
- Replies: 2
- Views: 1884
Atari 8 Bit Machines
Hi,
I was wondering if anyone here has done any programming with the Atari 8 Bit machines.
If so, is the process for creating a cart the same as it is for the NES?
Thanks,
T
I was wondering if anyone here has done any programming with the Atari 8 Bit machines.
If so, is the process for creating a cart the same as it is for the NES?
Thanks,
T
- Tue Apr 08, 2008 4:40 pm
- Forum: Newbie Help Center
- Topic: Reading the controller?
- Replies: 53
- Views: 21004
Thanks. What about this: ;Check if A and B are pressed LDA button_state AND #$03 ; mask out A+B bits CMP #$03 ; see if it equals A+B BNE ab_not_pressed jsr ab_is_pressed ab_not_pressed: The code above works in nintendulator. When I did this (below) previously, it also worked in nintendulator but not...
- Tue Apr 08, 2008 2:59 pm
- Forum: Newbie Help Center
- Topic: Reading the controller?
- Replies: 53
- Views: 21004
Yeah, I see what you guys are saying now... Thanks for the help. I was experimenting with detecting 2 simultaneous button presses, so I did this: ab_pressed EQU %00000011 ; a and b button press ;Check if A and B are pressed lda button_state cmp #ab_pressed bne ab_not_pressed jsr ab_is_pressed ab_not...
- Tue Apr 08, 2008 2:17 pm
- Forum: Newbie Help Center
- Topic: Reading the controller?
- Replies: 53
- Views: 21004
I understand what you're saying about $40 = no press and $41 = press. But in the original code that I'm referring to earlier in this thread we did this before masking the bits: updatejoy: LDA #1 ; first, strobe the joypad STA $4016 LDA #0 STA $4016 LDX #$08 ; set X to 8 (the number of times we want ...
- Tue Apr 08, 2008 11:44 am
- Forum: Newbie Help Center
- Topic: Reading the controller?
- Replies: 53
- Views: 21004
Difference between using AND and CMP. I noticed that this: ;Check the state of the right key lda button_state cmp #key_right ; compare bne right_not_pressed ; branch if not equal to zero jsr right_is_pressed right_not_pressed: Does the same thing that this did; ;Check the state of the right key lda ...