单纯小蝴蝶

文章
3
资源
0
加入时间
2年10月18天

Linux read系统调用之 page_cache_sync_readahead()

1 page_cache_sync_readahead()上篇文章说道在 do_generic_file_read() 函数中 label find_page 中调用 page_cache_sync_readahead() 启动同步预读。void page_cache_sync_readahead(struct address_space *mapping, struct ...

D触发器 vivado

源程序module DFF( input clk, input rst_n, input en, input d, output reg q ); always @(posedge clk, negedge rst_n) begin if(rst_n==0) q <= 1'b0; else if (en==1) q <= d; end endmodule仿真程序