BEQ Opcode fix & other stuffz

This commit is contained in:
WilliamMiceli
2019-03-22 19:54:06 -04:00
parent c85ad153dc
commit ad6765a43a
15 changed files with 120 additions and 143 deletions

View File

@@ -26,14 +26,15 @@ module instructionMemory(
memory[11] <= 9'b111011001; //and
memory[12] <= 9'b111111000; //sll
memory[13] <= 9'b111111001; //srl
// memory[14] <= 9'b100101100; //j
memory[14] <= 9'b110001001; //beq
memory[15] <= 9'b100001000; //jr
// memory[14] <= 9'b100100010; //j
memory[14] <= 9'b010001000; //zero
memory[15] <= 9'b110001101; //beq
memory[16] <= 9'b100001000; //jr
memory[16] <= 9'b000000000;
memory[17] <= 9'b100111100; //j
end