From 53e3d5ba088bb795860c2d1fc70294a78a805466 Mon Sep 17 00:00:00 2001
From: Dag Einar <debnord@hotmail.no>
Date: Thu, 7 Nov 2024 17:44:10 +0100
Subject: [PATCH] =?UTF-8?q?nvm=20m=C3=A5tte=20bruke=20komma=20istedenfor?=
 =?UTF-8?q?=20semikolon?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 Rx.vhd | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/Rx.vhd b/Rx.vhd
index 27e59cf..8e4a1dc 100644
--- a/Rx.vhd
+++ b/Rx.vhd
@@ -164,16 +164,16 @@ begin
     --------------------------------------------------------------------------------------------------------------------------------
     --component fifo
     --------------------------------------------------------------------------------------------------------------------------------
-    fifo: entity work.fifo is
+    fifo: entity work.fifo 
         Port map(
-            clock => clk;
-            data => fifo_inn;
-            empty => fifotom;
-            full => fifofull;
-            q => fifo_ut;
-            sclr => fifo_rst;
-            rdreq => fifo_rd_req;
-            wrreq => fifo_wr_req;
+            clock => clk,
+            data => fifo_inn,
+            empty => fifotom,
+            full => fifofull,
+            q => fifo_ut,
+            sclr => fifo_rst,
+            rdreq => fifo_rd_req,
+            wrreq => fifo_wr_req
         );
 
     -------------------------------------------------------------------------------------------------------------------------------
-- 
GitLab