Fixed verification bugs

This commit is contained in:
Arlet
2012-08-12 08:30:19 +02:00
parent a89c839d29
commit 55c26f780b
2 changed files with 15 additions and 13 deletions

2
ALU.v
View File

@@ -96,7 +96,7 @@ always @(posedge clk)
CO <= temp[8] | CO9;
Z <= ~|temp[7:0];
N <= temp[7];
V <= AI[7] ^ BI[7] ^ temp[7] ^ temp[8];
V <= AI[7] ^ temp_BI[7] ^ temp[7] ^ temp[8];
HC <= temp_HC;
end