URL
https://opencores.org/ocsvn/tcp_socket/tcp_socket/trunk
Subversion Repositories tcp_socket
[/] [tcp_socket/] [trunk/] [chips2/] [docs/] [source/] [index.rst] - Rev 4
Compare with Previous | Blame | View Log
===================================*Chips* - Hardware Design in Python===================================What is *Chips*?================*Chips* makes FPGA design quicker and easier. *Chips* isn't a HardwareDescription Language (HDL) like VHDL or Verilog, its a different way of doingthings. In *Chips*, you design components using a simple subset of the Cprogramming language. There's a Python API to connect C components togetherusing fast data streams to form complex, parallel systems all in a single chip.You don't need to worry about clocks, resets, or timing. You don't need tofollow special templates to make your code synthesisable. All that's done foryou!Features========Some of the key features include:- A fast and simple development environment- A free open source solution (MIT license)- Automatic generation of synthesisable Verilog- Optimise for speed or area- Use C and Python software tools to design hardware.You can get the *Chips* from the `Git Hub <http://github.com/dawsonjon/Chips-2.0>`_homepage. If you want to give it a try in some real hardware, take a look atthe `demo <http://github.com/dawsonjon/Chips-Demo>`_ for the Digilent AtlysDemo card.A Quick Taster==============.. code-block:: clfsr.c://4 bit linear feedback shift registervoid lfsr(){int new_bit = 0;int shift_register = 1;while(1){//tap off bit 2 and 3new_bit=((shift_register >> 0) ^ (shift_register >> 1) ^ new_bit);//implement shift registershift_register=((new_bit & 1) << 3) | (shift_register >> 1);//4 bit maskshift_register &= 0xf;//write to streamreport(shift_register);}}::console:$ c2verilog iverilog run lfsr.c81214731Documentation=============.. toctree:::maxdepth: 2language_reference/indexexamples/indextutorial/indexLinks=====- `SciPy`_ Scientific Tools for Python.- `matplotlib`_ 2D plotting library for Python.- `Python Imaging Library (PIL)`_ Python Imaging Library adds image processingcapabilities to Python.- `MyHDL`_ A Hardware description language based on Python... _`SciPy`: http://scipy.org.. _`matplotlib`: http://matplotlib.org.. _`MyHDL`: http://www.myhdl.org.. _`Python Imaging Library (PIL)`: http://www.pythonware.com/products/pil/Indices and tables==================* :ref:`genindex`* :ref:`modindex`* :ref:`search`
