diff options
| -rw-r--r-- | nandgame/comb_mem.sv | 3 | ||||
| -rw-r--r-- | nandgame/computer.sv | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/nandgame/comb_mem.sv b/nandgame/comb_mem.sv index 3a4af75..fb87364 100644 --- a/nandgame/comb_mem.sv +++ b/nandgame/comb_mem.sv @@ -38,8 +38,7 @@ assign inv_clk_int = ~clk_in; my_mem #( .DATA_WIDTH(DATA_WIDTH), - // limit memory - .DATA_DEPTH(1024) + .DATA_DEPTH(65536) ) nand_memory ( .clk_i(inv_clk_int), .write_en_i(store_to_pa_in), diff --git a/nandgame/computer.sv b/nandgame/computer.sv index 0be2a11..82b0c72 100644 --- a/nandgame/computer.sv +++ b/nandgame/computer.sv @@ -18,7 +18,8 @@ logic [15:0] PC_addr_int; logic [15:0] PC_content_int; my_mem #( - .DATA_WIDTH(16) + .DATA_WIDTH(16), + .DATA_DEPTH(65536) ) ROM ( .clk_i(nclk_int), .write_en_i(0), |
