- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
I have Quartus v11.1 Build 216 and generate NCO by his Wizard, generating include Simulation Model and Netlist. Then i try simulate this in Altera ModelSim and NCO not working. I use original TB generated by wizard and NCOout make only "U" I expected sine wave, not U. Where I made mistake?
Thanks for any help.링크가 복사됨
8 응답
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
initialize all signals, e.g.:
signal reset_n : std_logic := '0';
signal sin_val : std_logic_vector (MPR-1 downto 0) := (others => '0');
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
--- Quote Start --- initialize all signals, e.g.:
signal reset_n : std_logic := '0';
signal sin_val : std_logic_vector (MPR-1 downto 0) := (others => '0');
--- Quote End --- I paste this lines into my TB. It initialize zero value but NCO still not working. Initialize in attach.
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
You have to do this for ALL signals. But anyway, I believe the problem is somewhere in other place.
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
yes, initialization do only the "0" from the "U", but not from NCO sinusoidal wave
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
There may be other problems, too, but setting reset_n to '0' will keep the NCO in reset. You should only pulse it low.
- 신규로 표시
- 북마크
- 구독
- 소거
- RSS 피드 구독
- 강조
- 인쇄
- 부적절한 컨텐트 신고
We have right, the problem was some other. I forgot attach source file generated from BDF in NativeLink settings.
I overlooked ModelSim's Warning: (vsim-3473), that is already described here. thx for help