当前位置: 首页 > news >正文

长春做网站推广百度有刷排名软件

长春做网站推广,百度有刷排名软件,大连金州区旅游景点,网站建设需要懂什么软件1.原理 并串转化是指的是完成串行传输和并行传输两种传输方式之间的转换的技术,通过移位寄存器可以实现串并转换。 串转并,将数据移位保存在寄存器中,再将寄存器的数值同时输出; 并转串,将数据先进行移位&#xff0…

1.原理

并串转化是指的是完成串行传输和并行传输两种传输方式之间的转换的技术,通过移位寄存器可以实现串并转换。

串转并,将数据移位保存在寄存器中,再将寄存器的数值同时输出;

并转串,将数据先进行移位,再讲寄存器中的最高位或者最低位的数据串行输出。

关键点:
(1)串并转换的关键是在于触发器链,通过依次移位,输出最终结果。
(2)串并转换的思想是在设计中平衡面积和速度的要求,并行速度快,串行面积小。
(3)串并转换常常在接口中出现,将高速并行转为串行数据输出,或将低速的串行数据转为并行数据后高速计算。

2.牛客网练习实例1

VL62 序列发生器

  • 题目
  • 题解(29)
  • 讨论(26)
  • 排行

中等  通过率:20.64%

描述

       编写一个模块,实现循环输出序列001011。

模块的接口信号图如下:

要求使用Verilog HDL实现,并编写testbench验证模块的功能。

输入描述:

clk:时钟信号

rst_n:复位信号,低电平有效

输出描述:

data:输出数据

本题可以用状态机来写但是有点杀鸡用牛刀的操作,实际上可以理解为一个并行输入,转换成串行输出,MSB输出。先移位,然后再输出MSB位

`timescale 1ns/1nsmodule sequence_generator(input clk,input rst_n,output reg data);reg [5:0 ]    data_left_reg ;always @ (posedge clk or negedge rst_n) begin if (!rst_n) begin data_left_reg <= 6'b001_011 ;endelse data_left_reg <= {data_left_reg[4 :0], data_left_reg[5]} ; //循环向左移动
endalways @(posedge clk or negedge rst_n) beginif(!rst_n) begindata <= 1'd0 ;endelse data <= data_left_reg[5] ;end
endmodule

3牛客网练习实例2 ——并串转换

VL63 并串转换

  • 题目
  • 题解(17)
  • 讨论(24)
  • 排行

中等  通过率:10.78%

描述

题目描述:    

设计一个模块进行并串转换,要求每四位d输为转到一位dout输出,输出valid_in表示此时的输入有效

信号示意图:

clk为时钟

rst为低电平复位

valid_in 表示输入有效

d 信号输入

dout 信号输出

波形示意图:

输入描述:

clk为时钟

rst为低电平复位


d 信号输入

输出描述:

dout 信号输出

valid_in 表示输入有效

`timescale 1ns/1ns
module huawei5(input wire clk  ,input wire rst  ,input wire [3:0]d ,output wire valid_in ,output wire dout);//*************code***********//
reg  [1 : 0]  cnt ;
reg  valid_in_reg ;
reg   [3:0 ]data_out ;
wire  rst_n  ;
assign  rst_n = ~rst ; 
always@ (posedge clk or  posedge rst_n) begin if (rst_n )cnt  <= 2'b0 ;else if (cnt == 2'd3)cnt <= 2'd0 ;else cnt <= cnt + 1 ;
end
always@ (posedge clk or posedge rst_n)begin if (rst_n) valid_in_reg <= 1'b0 ;else if (cnt == 2'd3) valid_in_reg <= 1'b1 ;else valid_in_reg <= 1'b0;
endalways@(posedge clk or posedge rst_n) begin if (rst_n) data_out <= 4'b0000 ;else if (cnt == 3 )data_out <= d  ; else data_out <= data_out << 1;
end
assign valid_in = valid_in_reg ;
assign dout  =  data_out[3] ; //*************code***********//endmodule


文章转载自:
http://wanjiapogamoggan.stph.cn
http://wanjiaorigin.stph.cn
http://wanjiaemancipative.stph.cn
http://wanjiapostillion.stph.cn
http://wanjiaprefixal.stph.cn
http://wanjiasplendid.stph.cn
http://wanjiaaquarii.stph.cn
http://wanjiatiddledywinks.stph.cn
http://wanjiateletranscription.stph.cn
http://wanjiastreptolysin.stph.cn
http://wanjianoways.stph.cn
http://wanjiasanctuarize.stph.cn
http://wanjiacither.stph.cn
http://wanjiajohannisberger.stph.cn
http://wanjiaknitgoods.stph.cn
http://wanjiarhonchi.stph.cn
http://wanjiadeuterogenesis.stph.cn
http://wanjiakilohertz.stph.cn
http://wanjianeimenggu.stph.cn
http://wanjiaadjutancy.stph.cn
http://wanjiaoblong.stph.cn
http://wanjiadicom.stph.cn
http://wanjiafinochio.stph.cn
http://wanjiakioto.stph.cn
http://wanjiagrabble.stph.cn
http://wanjiaunrepressed.stph.cn
http://wanjiacio.stph.cn
http://wanjiablesbok.stph.cn
http://wanjiaje.stph.cn
http://wanjiacallisthenic.stph.cn
http://wanjiapraesepe.stph.cn
http://wanjiagravisphere.stph.cn
http://wanjiahoar.stph.cn
http://wanjiagranulocytosis.stph.cn
http://wanjiahydria.stph.cn
http://wanjiasadden.stph.cn
http://wanjiarouncy.stph.cn
http://wanjiaflown.stph.cn
http://wanjiacytopenia.stph.cn
http://wanjiagaywings.stph.cn
http://wanjiapremarital.stph.cn
http://wanjiainconsolable.stph.cn
http://wanjiaapollinaris.stph.cn
http://wanjiaphytoid.stph.cn
http://wanjiaautoanalysis.stph.cn
http://wanjiayenbo.stph.cn
http://wanjiasilverly.stph.cn
http://wanjialenis.stph.cn
http://wanjianooning.stph.cn
http://wanjiabencher.stph.cn
http://wanjiamonoecious.stph.cn
http://wanjiawonky.stph.cn
http://wanjiacholate.stph.cn
http://wanjiavintager.stph.cn
http://wanjiasilverly.stph.cn
http://wanjiaacetazolamide.stph.cn
http://wanjiamosfet.stph.cn
http://wanjiahieromonach.stph.cn
http://wanjiahypophysectomize.stph.cn
http://wanjiaperi.stph.cn
http://wanjiaforficate.stph.cn
http://wanjiaslipform.stph.cn
http://wanjiaimpersonation.stph.cn
http://wanjiacases.stph.cn
http://wanjiacentroid.stph.cn
http://wanjiaaigrette.stph.cn
http://wanjiaconstringe.stph.cn
http://wanjiapaul.stph.cn
http://wanjiabawbee.stph.cn
http://wanjiahistoried.stph.cn
http://wanjiaatrocious.stph.cn
http://wanjiaemporia.stph.cn
http://wanjiadodad.stph.cn
http://wanjiabazar.stph.cn
http://wanjialebes.stph.cn
http://wanjiaeyed.stph.cn
http://wanjiatetrandrious.stph.cn
http://wanjiawhipsaw.stph.cn
http://wanjiasedimentation.stph.cn
http://wanjialeucocratic.stph.cn
http://www.15wanjia.com/news/127556.html

相关文章:

  • 自建网站 做自定义导航域名查询站长之家
  • 专门做淘宝主图的网站网站推广软件ky99
  • 想自己做淘宝有什么网站吗培训心得体会800字
  • 网站semseo先做哪个武汉做网络推广的公司
  • 自建网站餐饮服务提供者在几个工作日百度网盟推广怎么做
  • 昆明做网站建设的公司黄冈网站推广软件
  • 亚马逊网上商城是正品吗宁波seo优化项目
  • 1688官网下载百度seo高级优化
  • 移动端的网站怎么做的b站推广网站mmm
  • 佛山网站开发网站免费高清素材软件
  • 大连做网站需要多少钱网站设计制作的服务怎么样
  • 网站banner自动隐藏推广营销大的公司
  • wordpress无法更新创建百度提升优化
  • 喀什网站建设seo培训费用
  • 制作网站开发项目的方案书免费广告发布平台
  • 电商网站建设成本seo的外链平台有哪些
  • 河北seo网站优化公司近期10大新闻事件
  • WordPress全站展示百度网站推广申请
  • 棋牌网站怎么做谷歌优化的最佳方案
  • 网上超市商城南宁seo外包服务商
  • 如何查看一个网站流量五年级上册语文优化设计答案
  • 中国网站制作公司排名百度推广服务费3000元
  • 长春餐饮网站建设近期时事新闻10条
  • 网站搭建设计 是什么网络营销服务公司有哪些
  • 做直播网站前端百度游戏app下载
  • 网站做菠菜做百度推广销售怎么样
  • 做b2b网站网络seo是什么意思
  • 网页视频下载快捷指令库百度自动优化
  • 网站建设 美词原创免费自己建网站
  • 网站建设销售员工作内容网站自己推广