So, I grabbed some code off of github for a project someone wrote using the ophis assembler, and I wanted to change it so I can build it with ca65.
I'm pretty new to NES Dev, but I changed the code around and got an error in FCEUX saying "FDS BIOS ROM Image missing", but I'm not sure why it would think that I'm using the Famicom Disk System (I think that's what the message is telling me).
Any suggestions of what I should try would be really helpful.
Thanks
FDS BIOS ROM image missing
Moderator: Moderators
- battagline
- Posts: 152
- Joined: Wed Sep 05, 2018 11:13 am
- Location: Colorado
- Contact:
FDS BIOS ROM image missing
A few of my web games
https://www.embed.com
Or if you're bored at work
https://www.classicsolitaire.com
https://www.embed.com
Or if you're bored at work
https://www.classicsolitaire.com
Re: FDS BIOS ROM image missing
Does your ROM have an iNES header? The lack of one could produce the FDS BIOS error message.
Could you post at least the linker script that you are passing to ld65, as well as the part of the assembly language source code that outputs the iNES header?
Or do you not know what any of the above means?
Could you post at least the linker script that you are passing to ld65, as well as the part of the assembly language source code that outputs the iNES header?
Or do you not know what any of the above means?
Re: FDS BIOS ROM image missing
As long as the thing that you've made looks like a NES file (first 3 bytes are "NES", not "FDS"), you shouldn't need the FDS BIOS.
- battagline
- Posts: 152
- Joined: Wed Sep 05, 2018 11:13 am
- Location: Colorado
- Contact:
Re: FDS BIOS ROM image missing
You guys are right... it was missing the header information. I've never used ophis, so I'm not sure what it did to include that header information.
It's still not working, but now at least it's not throwing the FDS error.
Thanks for your help
It's still not working, but now at least it's not throwing the FDS error.
Thanks for your help
A few of my web games
https://www.embed.com
Or if you're bored at work
https://www.classicsolitaire.com
https://www.embed.com
Or if you're bored at work
https://www.classicsolitaire.com
-
- Posts: 1
- Joined: Mon Nov 30, 2020 2:37 am
Re: FDS BIOS ROM image missing
what is header information