前言 在设计流程中,可能有的模块是不使用的,但某时候可能需要使用。 不同代码段的选择就可以使用条件编译。 流程 使用`define和`ifdef `else `endif语句实现此功能。 `timescale 1ns/1ps `define SIM_USE //定义SIM_USE,如果取消定义,注释 ...
分类:
其他好文 时间:
2020-01-15 11:47:59
阅读次数:
149
import timescale=10print("{:-^18}".format("执行开始"))for i in range(scale+1): a="*"*i b="."*scale scale -= 1 c=i*scale print('{:^3}%[{}->{}]'.format(c,a,... ...
分类:
其他好文 时间:
2019-08-30 20:57:55
阅读次数:
84
只读:Time.time:表示从游戏开发到现在的时间,会随着游戏的暂停而停止计算。Time.deltaTime:表示从上一帧到当前帧的时间,以秒为单位。Time.unscaledDeltaTime:不考虑timescale时候与deltaTime相同,若timescale被设置,则无效。Time.t ...
分类:
编程语言 时间:
2019-08-09 13:21:27
阅读次数:
90
域间数据传递之域外为慢速数据 域外慢速数据可以用事件来同步,具体参展王贞炎老师的《FPGA应用开发和仿真》4.5.4节。 这里给出一种Verilog实现方式。 sync_data.v `timescale 1ns/100ps module sync_data ( parameter NUM_OF_B ...
分类:
其他好文 时间:
2019-07-05 16:39:50
阅读次数:
104
非常多时候,应用程序或者是游戏须要用上暂停功能,unity提供了不少便捷的方式,列在以下: 1、在editor中,按下pausebutton就可以暂停 2、假设在代码中控制,能够通过设置Time.timeScale = 0来实现暂停。 3、假设你通过Time.timeScale = 0设置了暂停,可 ...
分类:
编程语言 时间:
2019-05-15 12:38:15
阅读次数:
1775
恢复内容开始 irun: -input dump.tcl -sv compile by sv source 恢复内容结束 +acess+wrc -timescale dump.tcl fsdbDumpfile “” fsdbDumpvars [depth] [var] fsdbDumpflush; ...
分类:
其他好文 时间:
2019-01-08 21:17:20
阅读次数:
217
timescaledb 1.0 已经发布了,同时支持prometheus 使用doker-compose 运行 环境准备 docker-compose 文件 version: '2.1' services: pg_prometheus: image: timescale/pg_prometheus: ...
分类:
数据库 时间:
2018-09-13 01:19:27
阅读次数:
1176
在verilog中每当遇到复杂的模块时,我们都不得不书写一长串端口声明,稍有不慎就会写错,并且难以检查。但在systemverilog中,接口interface则是避免了这个问题。下面的代码是对一个一位加法器的验证,使用了接口。`timescale 1ns / 1ps
interface if_port( input bit c
分类:
其他好文 时间:
2018-07-17 16:32:25
阅读次数:
307
关于编译指令:defineundefifdefifndefelseelseifendif条件包含default_nettype缺省的网线类型,默认为wireinclude包含文件resetall使得编译条件与之前相同timescale设置时间精度unconnected_drivenounconnected_drive默认驱动值celldefineendcelldefine博主目前还没有用过...p
分类:
其他好文 时间:
2018-07-03 15:11:10
阅读次数:
183
timesacledb 的安装还是使用docker,对于测试数据需要提前下载 启动timesacledb 使用支持gis 的镜像,后边需要使用 docker run -d --name timescaledb -p 5432:5432 timescale/timescaledb-postgis 预备 ...
分类:
数据库 时间:
2018-06-26 20:04:21
阅读次数:
392