mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-05-02 06:06:24 -04:00
tb: Write data only once per call to write_word() in tb_tk1
Keep WE and CS high for one clock cycle instead of two. To avoid writing the same address twice.
This commit is contained in:
parent
0b829cc9ee
commit
b1047b3618
1 changed files with 1 additions and 1 deletions
|
@ -301,7 +301,7 @@ module tb_tk1 ();
|
|||
tb_write_data = word;
|
||||
tb_cs = 1;
|
||||
tb_we = 1;
|
||||
#(2 * CLK_PERIOD);
|
||||
#(CLK_PERIOD);
|
||||
tb_cs = 0;
|
||||
tb_we = 0;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue