The 6502 is still being made today. In fact, if you count the 6502 cores inside custom ICs, they are being made in volumes of
hundreds of millions of units per year-- it's just that they're not very visible and people often don't even realize they own them, like in computers under the hoods of cars and in consumer electronics. The website of the IP owner that does the licensing for the various manufacturers is
http://www.westerndesigncenter.com/wdc/ .
I never put the entire computer on one schematic. There's really no reason to, and there are too many variations it could take. [
Edit: I gave in and did one, at
http://wilsonminesco.com/6502primer/pot ... ml#BAS_CPU. It's a very basic 65c02 computer.]
You would pretty much have to have ROM (like EEPROM) since there needs to be
some program in place to get things going upon power-up. Without this, a processor by itself doesn't know the steps to go through to get its first program from disc flash or over a serial line or anywhere else to run, or even to run a keypad and display to let you key in a minimal program. There are ways around it, but they could have big problems. One example would be to get a non-volatile SRAM module like Dallas Semiconductor (now part of Maxim) makes and plan to have that be the only memory, and put the reset vector and routine into that with something esle, then plug it into your creation and turn it on. The problem there is that without a means to protect just that portion of RAM while letting the computer write to the rest of it as it needs to, programming errors could mean that you overwrite the reset vector or reset routine itself, making the computer unable to recover.