Skip to content

Commit

Permalink
[ic] Wait a bit before pusling the READ
Browse files Browse the repository at this point in the history
  • Loading branch information
kostorr committed Jun 13, 2022
1 parent d06114d commit 26eea1b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Ic.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ uint32_t Ic::read(uint32_t address)
barWrite(sc_regs::IC_WR_CMD.index, 0x8);
barWrite(sc_regs::IC_WR_CMD.index, 0x0);

std::this_thread::sleep_for(std::chrono::milliseconds(10));

// Pulse the READ
barWrite(sc_regs::IC_WR_CMD.index, 0x2);
barWrite(sc_regs::IC_WR_CMD.index, 0x0);
Expand Down

0 comments on commit 26eea1b

Please sign in to comment.