FPGA CPUs
When you need a CPU with custom I/O or features, there seems to be three very distinct ways that people employ FPGAs. One solution is to simply incorporate an FPGA along side a standard CPU. You keep using your usual development tools and just build some interface between the CPU and the logic on the FPGA.
Another way to handle a design like this is to build the CPU right on the FPGA along with whatever custom things you need. There are an endless number of possibilities here, but, as always, some trade offs too. The FPGA vendors have their own CPUs that you can incorporate and often support tools to make this relatively simple. You can also acquire "cores" from a variety of sources either for a fee or on the open source market (see Open Cores , for example). And, of course, you could design your own CPU (a hobby of mine , although perhaps not that practical for most projects).
The third way, is to use FPGAs with a CPU core (or cores) on the die. This is really more like the first method, just integrated into one IC package.
If you want to use a CPU on an FPGA, availability of tools is a major issue. Some cores emulate "real" chips so they can piggy back on other tools. This is a particularly popular approach with open source CPUs. If the CPU is truly "custom" you'd like to find things like assemblers, debuggers, compilers, simulators, and the like. Naturally, if you are building your own truly custom CPU you'll have to roll your own assembler and compiler .
But suppose you really want to build your own CPU. Maybe you really have a unique requirement. Or maybe you just want to roll your own. One barrier is learning exactly how to design a CPU. Modern CPUs are extremely complex, so studying modern CPUs can be a bit daunting. Most of the CPU architecture classes I've seen at the college level are fascinated with out of order execution, register scheduling, and other things that are great expert topics, but not very conducive to learning.
CPUs need not be complex. The mCPU design will fit on a tiny CPLD! It is not the most practical design but since it is about a page of logic description language, it isn't a bad place to start learning. Sometimes getting over that first hump is the real challenge and a simple project can help get past that awkward stage. There are several enhanced versions of mCPU as well .
Open Cores, in particular, is a great place to read CPU source code ranging from mCPU to "old fashioned" designs like my own Blue to clones of 8051, 8080, and other standard processors.
Of course, for real projects, you'd need a pretty good reason to design your own CPU and an associated tool chain. Of course, you probably don't design your own car engines, either, but the best drivers and mechanics understand what's happening under the hood.

