Author |
Message |
Topic: where to find CISSR detail documentation? |
seeker_123
Replies: 1
Views: 10224
|
Forum: Bluespec SystemVerilog (BSV) Documents, Examples and Technical White Papers Posted: Mon Jul 18, 2016 7:39 am Subject: where to find CISSR detail documentation? |
hello,
I was looking for simulator for simulation of RISC V core. What I found is one of the simulator which I can use is CISSR. But I am not getting any information on CISSR and why I should pref ... |
Topic: regarding declaration of fifos using for with different size |
seeker_123
Replies: 5
Views: 12855
|
Forum: Designing with BSV's Rules, Interfaces, ... Posted: Fri Nov 08, 2013 12:47 am Subject: regarding declaration of fifos using for with different size |
thanks
As you suggested I want to write it into for loop only.
For that FIFO should be declared as vector.
e.g. Vector(n,FIFO#(Bit#(m))) fif;
then in for loop we can use as fif[variable] to ... |
Topic: regarding declaration of fifos using for with different size |
seeker_123
Replies: 5
Views: 12855
|
Forum: Designing with BSV's Rules, Interfaces, ... Posted: Thu Nov 07, 2013 2:52 am Subject: regarding declaration of fifos using for with different size |
thanks
These FIFOs are part of pipeline design
these are just accepting inputs with different size and passes through FIFO and then deq it to maintain piplined design for continious inputs
like ... |
Topic: regarding declaration of fifos using for with different size |
seeker_123
Replies: 5
Views: 12855
|
Forum: Designing with BSV's Rules, Interfaces, ... Posted: Wed Nov 06, 2013 1:42 am Subject: regarding declaration of fifos using for with different size |
hiii everybody,
I want to declare fifo having different size like this
FIFO #(Bit#(1)) q_s1 <- mkFIFO;
FIFO #(Bit#(2)) q_s2 <- mkFIFO;
FIFO #(Bit#(3)) q_s3 <- mkFIFO;
FIFO #(Bit#( ... |
Topic: what are commands to compile and run |
seeker_123
Replies: 1
Views: 4169
|
Forum: Designing with BSV's Rules, Interfaces, ... Posted: Tue Oct 15, 2013 3:03 am Subject: what are commands to compile and run |
Hii.....
now I am using GUI to compile link and run. can anyone tell me what are the commands to do above operations through command window
thank you |
Topic: Loop Back Problem |
seeker_123
Replies: 1
Views: 5376
|
Forum: Designing with BSV's Rules, Interfaces, ... Posted: Mon Oct 14, 2013 2:37 am Subject: Loop Back Problem |
Iam writing a Testbench for MAC module ,in that iam trying to connect the tx_gmii (input method of MAC) to rx_gmii(value method of MAC) both are of same MAC module and of same type i.e. Tuple3(Bit#(8) ... |
Topic: function with parameter |
seeker_123
Replies: 2
Views: 5713
|
Forum: Designing with BSV's Rules, Interfaces, ... Posted: Mon Sep 30, 2013 1:12 am Subject: function with parameter |
Thanks quark,
That was very helpful. |
Topic: function with parameter |
seeker_123
Replies: 2
Views: 5713
|
Forum: Designing with BSV's Rules, Interfaces, ... Posted: Mon Sep 30, 2013 12:41 am Subject: function with parameter |
Hii..
I have a function for comparator for 8 bit. I want to make this comparator bit width as parametrized. So that whenever I am calling that function I want to decide its width. How to pass this ... |
|