소스 검색

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