Skip to content

Commit

Permalink
update wrapper rtl and update version
Browse files Browse the repository at this point in the history
  • Loading branch information
NouranAbdelaziz committed Sep 1, 2024
1 parent 4eb1f6b commit b698de1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions EF_QSPI_XIP_CTRL.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ info:
license: APACHE 2.0
author: Mohamed Shalan
email: [email protected]
version: v1.0.3
date: 21-8-2024
version: v1.0.4
date: 1-9-2024
category: digital
tags:
- QSPI
Expand Down
4 changes: 2 additions & 2 deletions hdl/rtl/bus_wrappers/EF_QSPI_XIP_CTRL_ahbl.v
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ module EF_QSPI_XIP_CTRL_ahbl #(parameter NUM_LINES = 16,
RW : HREADYOUT <= 1'b1;
endcase

assign fr_rd = ( HTRANS[1] & HSEL & HREADY & ~c_hit & (state==IDLE) ) |
( HTRANS[1] & HSEL & HREADY & ~c_hit & (state==RW) );
assign fr_rd = ( HTRANS[1] & last_HSEL & HREADY & ~c_hit & (state==IDLE) ) |
( HTRANS[1] & last_HSEL & HREADY & ~c_hit & (state==RW) );

assign c_A = (state != IDLE) ? last_HADDR[23:0] : HADDR;

Expand Down

0 comments on commit b698de1

Please sign in to comment.