Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by eyalhoc

  1. E

    When masters initiate transactions, how do they go to each slave in AXI interconnect?

    Re: axi interconnect ip You can download a free generic AXI master core from OpenCores.org It has a configurable number of masters and slaves and such parameters. Generic AXI interconnect fabric :: Overview :: OpenCores
  2. E

    [SOLVED] need help: bidirectional data bus and memory model (Verilog)

    An easy way to debug this is to change the memory array to be 8 bit (reg [7:0] mem;) Write only once to address 0 and then you can see the memory being written / read in any simple waveform viewer.
  3. E

    How to enter the industry with a career break

    What you really need is to start working! Academic studies are fine but they're not actual work experience. Since you will be looking for a job as a 'graduate' you shouldn't be worried about "remembering" stuff, you should be focused on showing you are serious, hard-working, ready-to-learn kind...
  4. E

    [SOLVED] genetic algorithm fir filter design

    I know this is not really what you asked but if it might be of any help... I'm attaching a link to a Verilog generic FIR (hope it helps) Generic FIR filter :: Overview :: OpenCores
  5. E

    greatest common divisor (x c y , z)

    GCD is trivial: int GCD(int a, int b) { while( 1 ) { a = a % b; if( a == 0 ) return b; b = b % a; if( b == 0 ) return a; } } Your problem is the C++ does mathematical calculations on 32 or 64 bit data. What you need is a large number library to support...
  6. E

    i need free tools for VHDL

    You can try RobustVerilog, it is free and it allows code automation for all kinds of designs. You can get it here: **broken link removed**
  7. E

    Looking for free VLSI tools for LINUX

    You can try RobustVerilog, its free: **broken link removed**

Part and Inventory Search

Back
Top