[:P][:P][:P] 在许多电子系统中,经常需要用到频率和幅度可调的正弦波信号作为基准或载波信号。正弦渡信号主要通过模拟电路或DDS(Direct Digital Synthesis)等两种方式产生.相对于模拟电路,DDS具有相位连续、频率分辨率高、转换速度快、信号稳定等诸多优点,因此,DDS存雷达、通信、测试、仪表等领域得到了广泛的应用。
module test;reg [14*8:1] str_v;initialbeginstr_v=hello;$display (%s is stored as %h,str_v,str_v);str_v={str_v,!!!};$display (%s is stored as %h,str_v,str_v);endendmodule输入上述代码后不仿真,只想它输出文字。编译也没错。可是输出结果
评论