Skip to content

Commit

Permalink
ЛР7. Исправление адресации в ext_mem
Browse files Browse the repository at this point in the history
  • Loading branch information
HepoH3 committed Apr 23, 2024
1 parent bcaea16 commit fedc917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Labs/Made-up modules/lab_07.ext_mem.sv
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ assign ready_o = 1'b1;
logic [31:0] RAM [2**12];

logic [31:0] addr;
assign addr = addr_i >> 2;
assign addr = addr_i;

always_ff@(posedge clk_i) begin
case(1)
Expand Down

0 comments on commit fedc917

Please sign in to comment.