Update dpram.v

This commit is contained in:
Yunus Emre ERYILMAZ 2022-10-27 08:29:56 +03:00 committed by GitHub
parent 0fe3bd36b6
commit 67a77d863e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ module dpram (
input[0:31] d_in,
output[0:31] d_out );
dual_port_sram memory_0 (
dpram_1024x32_core memory_0 (
.wclk (clk),
.wen (wen),
.waddr (waddr),
@ -26,7 +26,7 @@ module dpram (
endmodule
module dual_port_sram (
module dpram_1024x32_core (
input wclk,
input wen,
input[0:9] waddr,