diff options
Diffstat (limited to 'usrp2')
-rw-r--r-- | usrp2/.gitignore | 2 | ||||
-rw-r--r-- | usrp2/control_lib/ram_2port.v | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/usrp2/.gitignore b/usrp2/.gitignore deleted file mode 100644 index a12cca79c..000000000 --- a/usrp2/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -xlnx_auto_* -*.log diff --git a/usrp2/control_lib/ram_2port.v b/usrp2/control_lib/ram_2port.v index 6c8332b9c..3716a7c8a 100644 --- a/usrp2/control_lib/ram_2port.v +++ b/usrp2/control_lib/ram_2port.v @@ -21,7 +21,7 @@ module ram_2port integer i; initial for(i=0;i<(1<<AWIDTH);i=i+1) - ram[i] <= {AWIDTH{1'b0}}; + ram[i] <= {DWIDTH{1'b0}}; always @(posedge clka) begin if (ena) |