git.joshuawise.com
/
firearm.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Add a .gitattributes file to force hex files to be binary-like.
[firearm.git]
/
BlockRAM.v
diff --git
a/BlockRAM.v
b/BlockRAM.v
index
a86ec75
..
e0eceeb
100644
(file)
--- a/
BlockRAM.v
+++ b/
BlockRAM.v
@@
-31,7
+31,7
@@
module BlockRAM(
always @(posedge clk)
begin
if (bus_wr && decode)
- data[ramaddr[13:2]]
<
= bus_wdata;
+ data[ramaddr[13:2]] = bus_wdata;
/* This is not allowed to be conditional -- stupid Xilinx
* blockram. */
This page took
0.016186 seconds
and
4
git commands to generate.