11 2023 档案

win10 激活
摘要:各种指令 查看激活状态 win+r调出运行框,输入slmgr.vbs -xpr,会弹出激活状态。 更换激活码 win+x,选择管理员身份执行powershell,依此执行 slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX //安装激活码 slmgr /skms kms
60
0
0
verilog 命令行输入参数
摘要:方便进行配置参数的多次遍历 tb的.v文件中 //get RG_huffmantype from simv in shell initial begin if($value$plusargs("RG_type=%d", RG_type)) begin RG_HuffmanType = RG_type
37
0
0
compress压缩模块功能测试
摘要:功能介绍 产生随机测试文本或者进行功能验证 功能验证指通过分别通过verilog与python打印压缩后序列,进行文本比对。 python代码 import sys import random import argparse str_line = '' def huffmancode(RG_type
14
0
0
verilog 简易fifo
摘要:fifo.v `timescale 1ns / 1ps module fifo #( parameter fifo_depth = 128 )( input clk, input rst, input read_en, input write_en, input write_data, output
14
0
0
vcs与verdi命令行仿真查看波形
摘要:makefile DESIGN_NAME = "fifo_tb" LOG_VCS = "vcs.log" LOG_SIMV = "simv.log" FILE_LIST = "./list.f" # Code Coverage CM = -cm line+cond+tgl+fsm+branch+as
128
0
0