James_Parsons wrote:
I've got questions everywhere, but if I build a 6502 how would I know what the memory locations of things such as RAM ROM, a 6551 ACIA. All this is important, but how do I know the memory locations for them
< . . . >
I looked at one thing but it was for high rom and ram I only need 4k rom
If you truly are going to use only 4K of ROM, it will be at $F000-FFFF, even if that means leaving a lot of space between used sections of the memory map. That's because $FFFA-FFFF normally have to be ROM because of the vectors. That's where the processor expects to find them. That's not to say you have to decode all the address bits. If you don't, there will be parts of RAM or ROM or I/O that are mirrored in other parts of the memory map; but there's nothing wrong with that.