Skip to content

Commit

Permalink
fix driver
Browse files Browse the repository at this point in the history
  • Loading branch information
M0stafaRady committed Oct 7, 2024
1 parent cde903c commit 5a39738
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion verify/uvm-python/i2s_agent/i2s_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async def run_phase(self, phase):
# await Timer(1 , "ns") # delay to avoid shifting of bits after reset
for i in range (sample_size-1, -1, -1): # get MSB first
self.vif.sdi.value = (left_sample >> i ) & 0b1
await RisingEdge(self.vif.sck)
await FallingEdge(self.vif.sck)
uvm_info(self.tag, f" left: falling edge sck {i} = {(left_sample >> i ) & 0b1}", UVM_HIGH)


Expand Down

0 comments on commit 5a39738

Please sign in to comment.