摘要:
1 CC?=gcc 2 CFLAGS?=-O2 -g -Wall 3 LDLIBS+= -lpthread -lm -lsdrplay_api 4 5 all: play_sdr 6 7 %.o: %.c 8 $(CC) $(CFLAGS) -c $< 9 10 play_sdr: play_sdr 阅读全文
摘要:
# OpenOCD MicroZus interface ftdi ftdi_vid_pid 0x0403 0x6014 ftdi_layout_init 0x2088 0x3f8b transport select jtag reset_config srst_only srst_push_pul 阅读全文
摘要:
1 #include "verilated_vcd_c.h" 2 #include "Vtop.h" 3 4 vluint64_t main_time = 0; 5 6 double sc_time_stamp() 7 { 8 return main_time; 9 } 10 11 int main 阅读全文
摘要:
1 #include <iostream> 2 #include <sstream> 3 #include "systemc.h" 4 5 #define WIDTH 8 6 #define VEC_NUM 4 7 #define VEC_WIDTH 4 8 9 SC_MODULE(vector_m 阅读全文
摘要:
首先安装构建环境(我用的系统是LinuxMint): 安装scala: sudo apt install scala; chisel是scala语言编写的库,而scala语言编译出来的字节码运行于JVM;所以会一并安装java运行时环境。 安装sbt: sudo apt install sbt; 安 阅读全文
摘要:
1 #include <stdio.h> 2 #include "platform.h" 3 #include "xil_types.h" 4 #include "xscugic.h" 5 #include "xscutimer.h" 6 #include "xscuwdt.h" 7 #includ 阅读全文
摘要:
SystemVerilog测试代码: 1 `timescale 1ns / 1ns 2 module dpi_test; 3 4 real a; 5 real s; 6 string str; 7 8 import "DPI-C" function real c_sin(real x); 9 10 阅读全文
摘要:
%% Parameters Tm=5;% Length of signal (s) Fd=512;% Sampling frequency (Hz) Ak=0.5;% Constant component (Unit) A1=1;% The amplitude of the first sinuso 阅读全文
摘要:
1 # 2 # Vivado Non-Project Flow 3 # 4 set DESIGN [lindex $argv 0] 5 6 # 7 config_webtalk -user off 8 9 # 10 create_project -in_memory 11 12 # 13 proc 阅读全文
摘要:
电路spice仿真工具已经比较成熟,开源的免费工具也有不错的性能。使用ngspice可以得到不错的仿真结果。 在Linux系统上,例如写一个RLC谐振的电路: RLCV1 1 0 AC 1V L 1 2 0.2 IC=0R 3 0 500 C 2 3 0.1U IC=0.AC DEC 501 100 阅读全文