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 mexico_mike

  1. M

    Need Help with opening a file and reading it only once

    If you're reading files, I assume that this is testbench (or non synthesizable) code. That being the case, why all the code to generate a clock. signal clk: std_logic := '0' .... clk <= not clk after time_constant ns; A lot of coders continue to write synthesizable code when it's not...
  2. M

    Need Help with opening a file and reading it only once

    If you only want to do something once, just create a boolean variable and set it's default to 'false'. Check the variable before you do your read. Then do your read or whatever, and then set the variable to true. VHDL i.e. ... read: process(clk,reset) variable did_it: boolean := false; begin...
  3. M

    Is it possible that Vera work with NC-verilog/vhdl ?

    Re: Vera & NC-sim I'm using VERA now with Modelsim and VHDL, and I think it does support NC-SIM.
  4. M

    about testbench automatically writer

    It's not foolproof, but this tcl/tk testbench generator I wrote does the testbench shell pretty nicely. As I mention in the help function, if you don't like it, hey, you have the source. Enjoy
  5. M

    Looking for info about Synthesis Scripting

    Here's a tcl script that does command line synthesis for FPGA Compiler II or FPGA Express. Read the help screen to setup a few extra files (inc_file.txt and part_file.txt) the the script need to synthesize the design. Mike Uploaded file: **broken link removed**
  6. M

    ALLI@NCE a FREE VLSI CAD system

    'Electric' is another free system, but hasthe same problems as Alliance. Not general purpose at all. Mike
  7. M

    ALLI@NCE a FREE VLSI CAD system

    Nice system intro, but after playing with it for a while, still can't figure out how to use it for plain vanila VHDL synthesis and/or simulation. Mike
  8. M

    [SOLVED] VHDL Testbench Generator

    vhdl test bench generator Here's another single entity test bench generator written in Tcl/Tk. Mike Uploaded file: **broken link removed**
  9. M

    Free Tcl/Tk Based Testbench Generator for VHDL/ModelSim

    vhdl testbench generator Anyone interested in a single entity VHDL testbench generator, try this. Code is free to do with as you wish. If you add significant enhancements, please send me a new copy too. You will need to have Tcl/Tk installed on you system to use this. Uploaded file: **broken...

Part and Inventory Search

Back
Top