simlib.v: Autolink referenced cells in alu

This commit is contained in:
Krystine Sherwin 2024-05-16 12:17:03 +12:00
parent 063a6bc2d7
commit 06e5e18371
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -626,8 +626,8 @@ endmodule
//- A building block supporting both binary addition/subtraction operations, and
//- indirectly, comparison operations.
//- Typically created by the `alumacc` pass, which transforms:
//- $add, $sub, $lt, $le, $ge, $gt, $eq, $eqx, $ne, $nex
//- cells into this $alu cell.
//- `$add`, `$sub`, `$lt`, `$le`, `$ge`, `$gt`, `$eq`, `$eqx`, `$ne`, `$nex`
//- cells into this `$alu` cell.
//-
module \$alu (A, B, CI, BI, X, Y, CO);