环境配置好后就正式进入verilog的学习了 先从最简单的点灯开始 我会向你们介绍最基础的数据类型和语法规则 仍然是从我们熟悉的界面开始 转到顶层模块 start中 首先,verilog都是以模块为单位进行编程 模块以 “module” “endmodule” 作为界限 如图既是定义一个模块star ...
分类:
其他好文 时间:
2021-06-13 10:12:36
阅读次数:
0
Linux目录结构 ①树形目录结构 ②根目录 所有分区、目录、文件等的位置起点 整个树形目录结构中,使用独立的一个“/”表示 ③常见字目录和作用 /root:系统管理root的宿主目录 /home:普通用户的宿主目录 /boot:系统内核、启动文件 /dev:设备文件 /etc:配置文件 /bin: ...
分类:
系统相关 时间:
2021-06-13 10:02:01
阅读次数:
0
wireshark工具使用 1、抓包头 有时候抓包不一定需要抓到全部的报文内容,只是想抓取主要的交互过程,这个时候可以配置抓取的内容长度。 配置方式:菜单中的Capture>Options,然后在弹出的窗口上定义“Limiteachpacketto”,这个值就是每一帧数据前多个个字节,这个包含TCP ...
分类:
其他好文 时间:
2021-06-13 10:01:02
阅读次数:
0
查找当前目录下某个文件 find . –name [filename] -i 不区分大小写 find . –iname [filename] -type 按类型进行查找,d查找目录,f查找文件 find . –type d –name [document] find . type f –name [ ...
分类:
系统相关 时间:
2021-06-13 09:58:24
阅读次数:
0
nginx.conf配置 #user nobody; user www www; worker_processes 8; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log in ...
分类:
其他好文 时间:
2021-06-13 09:55:40
阅读次数:
0
程序那一行:你一般找 就能找到 工作目录 然后把 UIC 也加上 程序路径也在刚才那个下面,只不过 在 bin 目录下得上面, 在下 ...
分类:
其他好文 时间:
2021-06-13 09:52:20
阅读次数:
0
方法一COPY两个*.so文件至上一层,并且为了使得g++编译器能识别两个*.so,要加上"lib"前缀:libthostmduserapi.so libthosttraderapi.so$ export LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH$ g++ testMdA ...
分类:
系统相关 时间:
2021-06-13 09:50:13
阅读次数:
0
1、安装echarts依赖 npm install echarts -S 2、main.js中配置 : // 引入echarts import echarts from 'echarts' Vue.prototype.$echarts = echarts 3、在页面中//,引入基本模板 let ec ...
分类:
其他好文 时间:
2021-06-13 09:49:43
阅读次数:
0
问题背景 什么是TCP timestamps(TCP 时间戳)? The remote host implements TCP Timestamps, as defined by RFC1323 (https://www.ietf.org/rfc/rfc1323.txt). A side effec ...
分类:
移动开发 时间:
2021-06-13 09:49:28
阅读次数:
0
In Dev mode, 1 你想利用CLI的Hot reload features 和快速Rebuild application bundles in memory. 2.和发请求给Rest Server.那么,你需要配置代理来来改善你的开发体验。 实现步骤:1.新建 proxy-conf.jso ...
分类:
移动开发 时间:
2021-06-13 09:48:05
阅读次数:
0