01 2023 档案

摘要:启动Jupyter Notebook 当开发板成功启动起来之后,可以打开PC电脑的浏览器,输入http://192.168.2.99或http://pynq:9090/并回车,然后,浏览器会跳转至该地址,显示如下: 账号:xilinx,密码:xilinx 输入密码以后,浏览器进入Jupyter No 阅读全文
posted @ 2023-01-26 12:32 vicky2021 阅读(524) 评论(0) 推荐(0) 编辑
摘要:准备软硬件 1块Pynq-Z2开发板 1张micro-SD卡(8GB即可) 1个micro-SD读卡器 1根micro-USB线 1根100/1000M网线 1台PC电脑,并安装好如下软件: Chrome / Edge PuTTy:https://the.earth.li/~sgtatham/put 阅读全文
posted @ 2023-01-26 12:28 vicky2021 阅读(1164) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Drawing; using System.Runtime.InteropServices; using System.Security.Permissions; using System.Windows.Forms; namespace Vic 阅读全文
posted @ 2023-01-25 20:14 vicky2021 阅读(216) 评论(0) 推荐(0) 编辑
摘要:import logging LOG_FORMAT = "[%(asctime)s]\t%(levelname)s\t%(message)s" DATE_FORMAT = "%Y-%m-%d %H:%M:%S %P" ''' 只有在第一次调用logging.basicConfig()时会起作用,后续 阅读全文
posted @ 2023-01-25 17:20 vicky2021 阅读(154) 评论(0) 推荐(0) 编辑
摘要:功能说明 状态图 状态 信号 S0 Hwy=G, Cntry=R S1 Hwy=Y, Cntry=R S2 Hwy=R, Cntry=R S3 Hwy=R, Cntry=G S4 Hwy=R, Cntry=Y Verilog代码 `define TRUE 1'b1 `define FALSE 1'b 阅读全文
posted @ 2023-01-23 20:09 vicky2021 阅读(983) 评论(0) 推荐(0) 编辑
摘要:// 四选一多路选择器 module mux4_to_1(out, i0,i1,i2,i3,s1,s0) // 声明端口 output out; input i1,i2,i3,i4; input s1,s2; // 声明输出端口为寄存器变量 reg out; // 若输入信号改变,则重新计算输出信号 阅读全文
posted @ 2023-01-23 18:18 vicky2021 阅读(1046) 评论(0) 推荐(0) 编辑
摘要:门级建模 wire out1, in1, in2; // 与门(and)和或门(or) and a1(out1, in1, in2); // 与门 nand na1(out1, in1, in2); // 与非门 or or1(out1, in1, in2); // 或门 nor nor1(out1 阅读全文
posted @ 2023-01-23 13:04 vicky2021 阅读(162) 评论(0) 推荐(0) 编辑
摘要:模块 module <模块名> (<模块端口列表>, <端口声明>(若有), <参数声明>(可选)); ... // 模块内容 // 1 - wire, reg和其他类型的变量声明; // 2 - 数据流语句(assign); // 3 - 低层模块实例; // 4 - always和initial 阅读全文
posted @ 2023-01-09 22:13 vicky2021 阅读(137) 评论(0) 推荐(0) 编辑
摘要:Verilog HDL是一种硬件描述语言(HDL:Hardware Description Language),以文本形式来描述数字系统硬件的结构和行为的语言,用它可以表示逻辑电路图、逻辑表达式,还可以表示数字逻辑系统所完成的逻辑功能。Verilog由Gateway Design Automatio 阅读全文
posted @ 2023-01-09 21:08 vicky2021 阅读(354) 评论(0) 推荐(0) 编辑
摘要:有限状态自动机是拥有有限数量的状态,并且每个状态可以变换其他状态的数学模型。 A finite-state machine (FSM) or finite-state automaton (FSA, plural: automata), finite automaton, or simply a s 阅读全文
posted @ 2023-01-07 18:30 vicky2021 阅读(474) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示