case for control unit

This commit is contained in:
jose.rodriguezlabra
2019-03-10 14:05:21 -04:00
parent 172238b4e0
commit 7406cddb64

View File

@@ -36,7 +36,11 @@ module CPU9bits(input wire [8:0] instr,
//Make control unit here
always @(instr) begin
case (instr)
9'b000000000: //something
endcase
end
//------------------------------