Nonsense
This commit is contained in:
@@ -6,7 +6,7 @@ module dataMemory(
|
||||
output reg [8:0] readData
|
||||
);
|
||||
|
||||
reg [8:0] memory [100:0]; // Maximum of 512 memory locations
|
||||
reg [8:0] memory [1:0]; // Maximum of 512 memory locations
|
||||
// Vivado will give warnings of unconnected ports on the "address" bus if they are unused
|
||||
|
||||
initial begin
|
||||
@@ -15,8 +15,8 @@ module dataMemory(
|
||||
|
||||
//Equation Solver Memory
|
||||
|
||||
// memory[0] <= 9'b000000001;
|
||||
// memory[1] <= 9'b000000010;
|
||||
memory[0] <= 9'b000000001;
|
||||
memory[1] <= 9'b000000010;
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user