# Conflicts:
#	CPU9bits_tb_behav.wcfg
#	lab2CA.srcs/sources_1/new/CPU9bits.v
#	lab2CA.srcs/sources_1/new/instructionMemory.v
#	lab2CA.xpr
This commit is contained in:
jose.rodriguezlabra
2019-04-12 00:04:12 -04:00
6 changed files with 2 additions and 2 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -6,14 +6,14 @@ module dataMemory(
output reg [8:0] readData
);
reg [8:0] memory [1:0]; // Maximum of 512 memory locations
reg [8:0] memory [100:0]; // Maximum of 512 memory locations
// Vivado will give warnings of unconnected ports on the "address" bus if they are unused
initial begin
//Equation Solver Memory
// Equation Solver Memory
memory[0] <= 9'b000000001;
memory[1] <= 9'b000000010;