Reword
authorEddie Hung <eddie@fpgeh.com>
Tue, 9 Jul 2019 05:56:19 +0000 (22:56 -0700)
committerEddie Hung <eddie@fpgeh.com>
Tue, 9 Jul 2019 05:56:19 +0000 (22:56 -0700)
techlibs/xilinx/cells_map.v

index d48a3f15ceb8abb34778e7c3385b68cae148eca7..63095880e7f1e14ef4b8b926c21c74bc299f6b2a 100644 (file)
@@ -202,7 +202,7 @@ module \$__XILINX_SHIFTX (A, B, Y);
     end
     else if (A_WIDTH <= 2 ** 3) begin
       // Rather than extend with 1'bx which gets flattened to 1'b0
-      // causing the "don't care" state to get lost, extend with MSB
+      // causing the "don't care" status to get lost, extend with MSB
       // so that we can recognise again later when mapping MUXF78
       wire [8-1:0] Ax = {{(8-A_WIDTH){A[A_WIDTH-1]}}, A};
       wire T0 = B[0] ? Ax[1] : Ax[0];
@@ -213,7 +213,7 @@ module \$__XILINX_SHIFTX (A, B, Y);
     end
     else if (A_WIDTH <= 2 ** 4) begin
       // Rather than extend with 1'bx which gets flattened to 1'b0
-      // causing the "don't care" state to get lost, extend with MSB
+      // causing the "don't care" status to get lost, extend with MSB
       // so that we can recognise again later when mapping MUXF78
       wire [16-1:0] Ax = {{(16-A_WIDTH){A[A_WIDTH-1]}}, A};
       wire T0 = B[1] ? B[0] ? Ax[ 3] : Ax[ 2]