Quellcode durchsuchen

Fix stupid error of portmap. Order was wrong..

Jonatan Gezelius vor 4 Jahren
Ursprung
Commit
267f86252c
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  1. 2 1
      testbench/ha_tb.vhd

+ 2 - 1
testbench/ha_tb.vhd

@@ -19,7 +19,8 @@ architecture beh of ha_tb is
 begin
 
   --ha_instance : ha port map (q => a, w => b, e => o, r => c);
-  ha_instance : ha port map (q, w, e, r);
+  ha_instance : ha port map (a => q, b => w, o => e, c => r);
+  --ha_instance : ha port map (q, w, e, r);
 
   process is
   begin