X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/6658905f18a1eebc148836f26c731dea9c1377dc..refs/pull/553/head:/fpga/util.v

diff --git a/fpga/util.v b/fpga/util.v
index c500edb4..0842ac64 100644
--- a/fpga/util.v
+++ b/fpga/util.v
@@ -1,27 +1,27 @@
-//-----------------------------------------------------------------------------
-// General-purpose miscellany.
-//
-// Jonathan Westhues, April 2006.
-//-----------------------------------------------------------------------------
-
-module mux8(sel, y, x0, x1, x2, x3, x4, x5, x6, x7);
-    input [2:0] sel;
-    input x0, x1, x2, x3, x4, x5, x6, x7;
-    output y;
-    reg y;
-
-always @(x0 or x1 or x2 or x3 or x4 or x5 or x6 or x7 or sel)
-begin
-    case (sel)
-        3'b000: y = x0;
-        3'b001: y = x1;
-        3'b010: y = x2;
-        3'b011: y = x3;
-        3'b100: y = x4;
-        3'b101: y = x5;
-        3'b110: y = x6;
-        3'b111: y = x7;
-    endcase
-end
-
-endmodule
+//-----------------------------------------------------------------------------
+// General-purpose miscellany.
+//
+// Jonathan Westhues, April 2006.
+//-----------------------------------------------------------------------------
+
+module mux8(sel, y, x0, x1, x2, x3, x4, x5, x6, x7);
+    input [2:0] sel;
+    input x0, x1, x2, x3, x4, x5, x6, x7;
+    output y;
+    reg y;
+
+always @(x0 or x1 or x2 or x3 or x4 or x5 or x6 or x7 or sel)
+begin
+    case (sel)
+        3'b000: y = x0;
+        3'b001: y = x1;
+        3'b010: y = x2;
+        3'b011: y = x3;
+        3'b100: y = x4;
+        3'b101: y = x5;
+        3'b110: y = x6;
+        3'b111: y = x7;
+    endcase
+end
+
+endmodule