How can I make my own microcontroller?

前端 未结 9 865
傲寒
傲寒 2021-01-30 02:32

How can I make my own microcontroller? I\'ve done some work using GAL chips and programmed a chip to do simple commands such as add, load, move, xor, and output, but I\'d like t

相关标签:
9条回答
  • 2021-01-30 02:44

    A microcontroller can be as simple as a ROM (instruction*2^x + (clock phase) is the address, outputs are the control signals, and you're good to go). Or it can be a complex harry beast with three arms and branch prediction support hardware.

    Can you give more details about your aspirations?

    0 讨论(0)
  • 2021-01-30 02:59

    Look here for a good wiki book. I had some coursework I wrote when I was teaching Electronic Eng, but I couldn't find it around. When I was teaching, most of the students were happy to use the schematic capture tools in the Xilinx Foundation package. They've moved onto ISE and WebPACK now. You can download the WebPack for free, which is useful, and it has schematic capture and simulation in it.

    If you really want to shine, learn VHDL or Verilog (VHDL seems to be more common where I've worked, but that is only a small smattering of places) and code the design rather than enter it through the GUI.

    If you know ANYTHING at all about digital logic design (and some HDL) I rekon you can have a somewhat functional 8-bit microprocessor simulating in VHDL in about 2 days. You're not going to build anything blazingly fast or enormously powerful in that time but it's a good starting point to grow from. If you have to learn about digital design, factor in a couple of days to learn how the tools work and simulate some basic logic circuits before moving onto the uP design.

    Start learning the basics of digital systems, and how to build a binary adder. Move on to building an ALU to handle addition, subtraction, and, or, xor, etc and then a sequencer to read opcodes from RAM and supply them to the execution unit.

    You can get fancy with instruction set design, but I'd recommend starting out REALLY simple until you have your head around whats going on, then throw it out and start again with something more complex.

    Once you have the design simulating nicely you can gauge its complexity and purchase a device to suit. You should look at a development system for the device family you've chosen. Pick a device bigger than what you need for development because it's nice to be able to add extra instrumentation to debug it when it's running, and you almost certainly won't have optimized your design in the early stages of getting it on the device.

    EDIT: Colin Mackenzie has a good tutorial about uC design and some FPGA boards as well as a bit of other stuff.

    0 讨论(0)
  • 2021-01-30 03:01

    I saw a textbook once that stepped through building a machine from TTL chips. This had the same instruction set as a PDP-8, which is very - and I mean very - simple, so the actual machine architecture is easy to implement in this way.

    The PDP-8 FAQ mentions a book: "The Art of Digital Design," second edition, by Franklin Prosser and David Winkel (Prentice-Hall, 1987, ISBN 0-13-046780-4). It also mentions people implementing it in FPGA's.

    Given the extreme simplicity of this CPU architecture and availability of PDP-8 code or reference implementations it might be a good starting point to warm up with.

    Alternatively, an acquaintance of mine implemented a thumb (cut down ARM) on a FPGA as a university project run by one Steve Furber (a prominent Acorn alumnus). Given that this could be compressed into a format small enough for a university project it might also be a good start.

    0 讨论(0)
  • 2021-01-30 03:03

    To play with soft-core microprocessors, I like the Spartan 3 Starter Board from Digilent just because it has 1M of static RAM. SDRAM and DDR RAM are harder to get going, you know.

    The leds, switches and a simple serial interface are a plus to debug and communicate.

    As someone already pointed out, OpenCores.org is a good place to find working examples. I used the Plasma uC to write some papers while on university.

    0 讨论(0)
  • 2021-01-30 03:03

    You can get free samples of pic micro controllers at this site. Last I knew, you don't even have to pay shipping.

    http://www.microchip.com/stellent/idcplg?IdcService=SS_GET_PAGE&nodeId=64

    0 讨论(0)
  • 2021-01-30 03:05

    You may want to have a look around OpenCores.org, a "forge" site for open source IP core development. Also, consider getting yourself a development board like one of these to play around with.

    Much of the tools ecosystem revolves around VHDL, although Avalda is working on tools to compile F# for FPGAs.

    0 讨论(0)
提交回复
热议问题