摘要: module axis_async_fifo #( parameter integer DATA_WIDTH = 8, parameter integer USER_WIDTH = 1, parameter integer FIFO_DEPTH = 1024, parameter HAS_LAST 阅读全文
posted @ 2026-06-16 13:23 Oppenic 阅读(5) 评论(0) 推荐(0)
摘要: module firemap_channel_align #( parameter [4:0] HEADER_FF_NUM = 5'd16 )( input wire clk_i, // 250M时钟 input wire rst_n_i, // 同步低有效复位 input wire cap_pul 阅读全文
posted @ 2026-06-15 16:45 Oppenic 阅读(3) 评论(0) 推荐(0)
摘要: module mdio_rsp_to_uart_tx #( parameter [15:0] TC_HEADER = 16'h5418, parameter [7:0] RD_RSP = 8'h01, parameter [7:0] WR_RSP = 8'h02, parameter [7:0] W 阅读全文
posted @ 2026-06-10 10:12 Oppenic 阅读(7) 评论(0) 推荐(0)
摘要: module mdio_cmd_fifo_to_axi ( input wire clk, input wire rst, input wire [32:0] s_axis_tdata_i, // 命令FIFO数据 input wire s_axis_tvalid_i, // 命令FIFO有效 ou 阅读全文
posted @ 2026-06-10 08:45 Oppenic 阅读(8) 评论(0) 推荐(0)
摘要: module frame_split_to_fifo_8bit #( parameter integer MAX_FRAME_BYTES = 256 // 最大输入缓存字节数 )( input wire sys_clk , // 系统时钟 input wire rst_n , // 同步低有效复位 阅读全文
posted @ 2026-05-14 15:21 Oppenic 阅读(9) 评论(0) 推荐(0)
摘要: [DRC UCIO-1] Unconstrained Logical Port: 20 out of 22 logical ports have no user assigned specific location constraint (LOC). 首先检查是否对端口进行了约束;再检查多约束文件的 阅读全文
posted @ 2026-04-29 16:25 Oppenic 阅读(25) 评论(0) 推荐(0)
摘要: # # Auto export DCP (synth only, clean) # Disable constr XDC before synth, restore after export # Output: <proj_dir>/<top>.dcp # proc print_banner {ms 阅读全文
posted @ 2026-04-29 11:17 Oppenic 阅读(13) 评论(0) 推荐(0)
摘要: edf不带约束,constr目录和ip生成时的约束都不带 dcp会携带工程下的所有约束,所以生成dcp时最好把管脚约束文件禁用再生成 阅读全文
posted @ 2026-04-29 10:29 Oppenic 阅读(7) 评论(0) 推荐(0)