1

Add missing "signed" to ALU ports/connections

This commit is contained in:
2023-03-29 15:03:20 +02:00
parent 17493586ff
commit ea5b2c53c2
6 changed files with 150 additions and 16 deletions

View File

@ -3,9 +3,9 @@
module ArithmeticUnit_TestBench;
var logic[2:0] opcode;
var logic[7:0] operandA;
var logic[7:0] operandB;
tri[7:0] result;
var logic signed[7:0] operandA;
var logic signed[7:0] operandB;
tri signed[7:0] result;
ArithmeticUnit au(
.opcode(opcode),