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 Adnan86

  1. A

    Passing value of a parameters in one .cpp file to another .cpp file

    These files belong to BOOKSIM simulator ( https://github.com/booksim/booksim2). an islip kind of allocator which used inside of the router. router files inside of ../src/routers/router.cpp and Islip file inside ../src/allocators/islip.cpp In router any time we need to allocate switches/ports...
  2. A

    Passing value of a parameters in one .cpp file to another .cpp file

    Hello, In Attached file there are four files (router.cpp, router.hpp, islip.cpp and islip.hpp) for same project. In router.cpp, there is a parameter which is (id or _id), that indicate the id of a router, for example, router 0 or router 1. Now, I need the value of this parameter in...
  3. A

    Get some advice and tips to design ETHERNET switch or even TSN switch on FPGA

    Thank you for your advice. I will read the document, but we can use this IP to designing a switch, it would be nice if I have something related to designing a switch from scratch. Bests,
  4. A

    Get some advice and tips to design ETHERNET switch or even TSN switch on FPGA

    Hi, I am going to design An Ethernet switch on FPAG. Our input data could have priority also we need to design the switch on real-time applications. So, in this case, there is another protocol called TSN. But since the design of the TSN switch at the beginning maybe needs too much time, I am...
  5. A

    Help to get Answer in VHDL code for use Floting point and RAM

    thank you for answering. about X', i already have this problem in address as i find out i connect 1 and 0 in some connetion. but about delay the write to the ram until FP IP would have the valid, i tried it but i couldnt solve the problem. i wll appreciate to give me some clue to find out.
  6. A

    Help to get Answer in VHDL code for use Floting point and RAM

    Hi, I want to design a system with VIVDAO 18.3 version(Virtex-7 and xc7vx485tffg1157-1) by using VHDL code and also used FP-IP (latency = 2) and RAM IP. I saved numers in coe file: address 0 to end have these value= > c190 0000, 4118 0000,411c 0000,4000 0000, c000 0000, 4000 0000 , c000 0000 ...
  7. A

    need some help to design digital circuit

    just for determine number of level changer, So I can use it, whenevre 2 times input level changed, output = input after that output = 0. So with this idea output show just first pulse of input.
  8. A

    need some help to design digital circuit

    So, if this cant work. what is your advice for me, I want to design a simple gate level circuit that work like this simulation : It means in output I need just first pulse of my signal.
  9. A

    need some help to design digital circuit

    I write this idea for my purpose with verilog code module pulseD( input data_in, rst, output reg data_out); reg [3:0] count; reg temp_in; always @(*) begin temp_in <= data_in; if (rst) begin count <= 0; end else if (temp_in != data_in) begin count <= count + 1; end end...
  10. A

    need some help to design digital circuit

    HOW ? Multiplexer cant detect which pulse of my input its a first .
  11. A

    need some help to design digital circuit

    so, what can I do, for detect of first pulse of my input ??
  12. A

    need some help to design digital circuit

    Hi, I want to design a circuit that : input is pulse with different width, but i just want to have first pulse in output. do you have any idea to design this with gate level. I will appreciate if someone help. thanks
  13. A

    Need help for write code for recurrent block

    I thought, I found my problem for one block neuron, now , when i mixed 2 block together just like picture , i have 'x' in output. what I should do ?
  14. A

    Need help for write code for recurrent block

    I changed the code several times. my first idea was, just multiplier is sequential , and other part combitional. but after that I change it several times to get answer
  15. A

    Need help for write code for recurrent block

    Re: Need help for write verilog code for recurrent block yes, it should be combitional - - - Updated - - - this code it just for one block ? I understant that two output of this block is always 'x' `timescale 1ns / 1ps...

Part and Inventory Search

Back
Top