I did some looking through the changelog from r264, and thought I should
try to play around with the tests. However, upon running vpi_test.sh he
complained about the lack of vbp. Where can I find this application? I
tried to do a quick google search and through our wiki, but couldn't
find anything useful. Where is this magic app? I want to see pretty test
pictures :)
And while I still have your attention. A lot of stuff dies when make-ing
in the vid_ctl/test dir. I'm attaching a patch which solves some of the
problems, but there's still some stuff to be ironed out. I didn't
want to commit it to the repo. due to not being 100% certain :)
--
Life on the earth might be expensive, but it
includes an annual free trip around the sun.
Kenneth Østby
http://langly.org
Index: run_fetch_test.sh
===================================================================
--- run_fetch_test.sh (revision 263)
+++ run_fetch_test.sh (working copy)
@@ -1,5 +1,5 @@
#!/bin/sh
-iverilog pixel_fetch.v pixel_fetch_test.v
+iverilog ../pixel_fetch.v pixel_fetch_test.v
./a.out
gtkwave fetch_test.vcd fetch_test.save &
Index: run_send_test.sh
===================================================================
--- run_send_test.sh (revision 263)
+++ run_send_test.sh (working copy)
@@ -1,5 +1,5 @@
#!/bin/sh
-iverilog pixel_send.v pixel_send_test.v dummy_fifo.v
+iverilog ../pixel_send.v pixel_send_test.v dummy_fifo.v
if [ $? -eq 0 ]
then
./a.out
Index: pixel_fetch_test.v
===================================================================
--- pixel_fetch_test.v (revision 263)
+++ pixel_fetch_test.v (working copy)
@@ -19,7 +19,7 @@
pixel_fetch fetch (
.vid_clock (vid_clock),
- .reset (reset),
+ .reset_ (reset),
.load (load),
.addr_base (addr_base),
.addr_offset (addr_offset),
Index: pixel_send_test.v
===================================================================
--- pixel_send_test.v (revision 263)
+++ pixel_send_test.v (working copy)
@@ -15,7 +15,7 @@
pixel_send send (
.vid_clock (vid_clock),
- .reset (reset),
+ .reset_ (reset),
.send (send),
.req_deq (req_deq),
.depth (depth),
@@ -24,7 +24,7 @@
);
dummy_fifo fifo (
.clock (vid_clock),
- .reset (reset),
+ .reset_ (reset),
.data_out (pixel_data),
.deq(req_deq)
);
_______________________________________________
Open-graphics mailing list
[email protected]
http://lists.duskglow.com/mailman/listinfo/open-graphics
List service provided by Duskglow Consulting, LLC (www.duskglow.com)