Skip to content

Commit

Permalink
Update tt_um_quardinlyttle_top.v
Browse files Browse the repository at this point in the history
added a dreaded semicolon
  • Loading branch information
quardinlyttle authored Sep 7, 2023
1 parent 18c4dc2 commit 093661f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tt_um_quardinlyttle_top.v
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ begin
4'b0101: Output= {4'b0000,~(A|B)}; //NOR Opcode
4'b0110: Output= {4'b0000,~(A^B)}; //XNOR Opcode
4'b0111: Output= {4'b0000,adderWire}; //Addition Opcode
4'b1000: Output= {4'b0000,subWire} //Subtract Opcode
4'b1000: Output= {4'b0000,subWire}; //Subtract Opcode
4'b1001: Output= {4'b0000,mulWire}; //Multiplication Opcode
4'b1010: Output= {6'b000000,compWire}; //Compare Opcode; 2'b10 when A is greater than B, 2'b01 when B is greater than A. 2'b11 when equal.
4'b1011: Output= {4'b0000,A,B} << 1; //Shift Left logic
Expand Down

0 comments on commit 093661f

Please sign in to comment.