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 Abhi3005

  1. A

    Round Robin Arbiter with ring counter

    is this correct ??? // arbiter logic module arbiter(clk,rst,req,gnt); input clk,rst; input [3:0]req; wire [3:0]out0; wire [3:0]out1; wire [3:0]out2; wire [3:0]out3; output [3:0]gnt; reg [3:0]outs; wire [3:0]en; rc r0(.clock(clk),.reset(rst),.q(en)); prlogic...
  2. A

    Round Robin Arbiter with ring counter

    This is the code i hve written. module arbiter(clk,rst,req,gnt,en); input clk,rst,en; input [3:0]req; output [3:0]gnt; reg [3:0]out; rc r0(.clock(clk),.reset(rst),.q[0](en)); prlogic p0(.req(req),.out(gnt),.en(en)); rc r1(.clock(clk),.reset(rst),.q[1](en)); prlogic...
  3. A

    Round Robin Arbiter with ring counter

    the design i want to code is this.
  4. A

    Round Robin Arbiter with ring counter

    Hi, Difficulty is implementing in verilog the whole design i know the logic but exactly i m not getting the idea how to write the code for this .
  5. A

    Round Robin Arbiter with ring counter

    Actually i know how to write code for ring counter, priority encoder,decoder but to write combine code for whole design is diffficult for me as i am new to verilog.
  6. A

    Round Robin Arbiter with ring counter

    Very urgent. I would like know that how can we code a round robin arbiter using a ring counter for token generation means if the token is with first user first priority logic 0 will be enabled and so on.Based on the person who is accessing the resource the corresponding value of the person comes...

Part and Inventory Search

Back
Top