ソースを参照

Fix stupid error of portmap. Order was wrong..

Jonatan Gezelius 4 年 前
コミット
267f86252c
1 ファイル変更2 行追加1 行削除
  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