集成电路技术分享

 找回密码
 我要注册

QQ登录

只需一步,快速开始

搜索
查看: 1749|回复: 4

状态机无任何输出 高手进

[复制链接]
CHAN 发表于 2010-6-26 00:34:26 | 显示全部楼层 |阅读模式
我的代码:

moduleabc (
       clk_c,rst_c,
       wr_c,re_c,
       dataout_c,datain_c,add_c,
       flash_sel,sram_sel,ram_sel,
       add,data,
       ce_sn,ce_fn,ce_rn,oe_n,we_n,
       lb_n,ub_n,
       out_null
       );
inputclk_c,rst_c;
inputout_null;
inputwr_c,re_c;
input[16:0]add_c;
input[15:0]datain_c;
inputflash_sel,sram_sel,ram_sel;
output[15:0]dataout_c;
output[16:0]add;
outputce_sn,ce_fn,ce_rn;
outputoe_n,we_n;
outputlb_n,ub_n;
inout[15:0]data;
wireclk_c,rst_c;
wireout_null;
wirewr_c,re_c;
wire[16:0]add_c;
wire[15:0]datain_c;
reg[15:0]dataout_c;
reg[16:0]add;
regce_sn,ce_fn,ce_rn;
regoe_n,we_n;
reglb_n,ub_n;
///////////////////////////////内部信号///////////////////////////////
reg[5:0]CS,NS;
parameter[5:0]IDLE = 6'b000000,
      WRITE_SRAM = 6'b000001,
      READ_SRAM = 6'b000010,
      WRITE_FLASH = 6'b000100,
      READ_FLASH = 6'b001000,
      WRITE_RAM = 6'b010000,
      READ_RAM = 6'b100000;
      
reg[15:0]temp_data;
assigndata = (~wr_c) ? temp_data : 16'bzzzzzzzzzzzzzzzz;      
////////////////1st always block, sequential state transition////////////////
always @ (posedge clk_c or negedge rst_c)
begin
  if (!rst_c)
  CS <= IDLE;
  else
  CS <=NS;
end
////////////////2nd always block, combinational condition judgment
always @ (rst_c or CS or flash_sel or sram_sel or ram_sel or wr_c or re_c)
begin
  NS = 6'bxxxxxx;
case (CS)
IDLE: begin
if  ((sram_sel) && (~wr_c) && (re_c)) NS = WRITE_SRAM;
else if ((sram_sel) && (wr_c) && (~re_c)) NS = READ_SRAM;
else if ((flash_sel) && (~wr_c) && (re_c)) NS = WRITE_FLASH;
else if ((flash_sel) && (wr_c) && (~re_c)) NS = READ_FLASH;
else if ((ram_sel) && (~wr_c) && (re_c))NS = WRITE_RAM;
else if ((ram_sel) && (wr_c) && (~re_c))NS = READ_RAM;
else  NS = IDLE;
end
WRITE_SRAM: begin
if  ((sram_sel) && (~wr_c) && (re_c)) NS = WRITE_SRAM;
else if ((sram_sel) && (wr_c) && (~re_c)) NS = READ_SRAM;
else if ((flash_sel) && (~wr_c) && (re_c)) NS = WRITE_FLASH;
else if ((flash_sel) && (wr_c) && (~re_c)) NS = READ_FLASH;
else if ((ram_sel) && (~wr_c) && (re_c))NS = WRITE_RAM;
else if ((ram_sel) && (wr_c) && (~re_c))NS = READ_RAM;
else  NS = IDLE;
end
READ_SRAM: begin
if  ((sram_sel) && (~wr_c) && (re_c)) NS = WRITE_SRAM;
else if ((sram_sel) && (wr_c) && (~re_c)) NS = READ_SRAM;
else if ((flash_sel) && (~wr_c) && (re_c)) NS = WRITE_FLASH;
else if ((flash_sel) && (wr_c) && (~re_c)) NS = READ_FLASH;
else if ((ram_sel) && (~wr_c) && (re_c))NS = WRITE_RAM;
else if ((ram_sel) && (wr_c) && (~re_c))NS = READ_RAM;
else  NS = IDLE;
end
WRITE_FLASH: begin
if  ((sram_sel) && (~wr_c) && (re_c)) NS = WRITE_SRAM;
else if ((sram_sel) && (wr_c) && (~re_c)) NS = READ_SRAM;
else if ((flash_sel) && (~wr_c) && (re_c)) NS = WRITE_FLASH;
else if ((flash_sel) && (wr_c) && (~re_c)) NS = READ_FLASH;
else if ((ram_sel) && (~wr_c) && (re_c))NS = WRITE_RAM;
else if ((ram_sel) && (wr_c) && (~re_c))NS = READ_RAM;
else  NS = IDLE;
end
READ_FLASH: begin
if  ((sram_sel) && (~wr_c) && (re_c)) NS = WRITE_SRAM;
else if ((sram_sel) && (wr_c) && (~re_c)) NS = READ_SRAM;
else if ((flash_sel) && (~wr_c) && (re_c)) NS = WRITE_FLASH;
else if ((flash_sel) && (wr_c) && (~re_c)) NS = READ_FLASH;
else if ((ram_sel) && (~wr_c) && (re_c))NS = WRITE_RAM;
else if ((ram_sel) && (wr_c) && (~re_c))NS = READ_RAM;
else  NS = IDLE;
end
WRITE_RAM: begin
if  ((sram_sel) && (~wr_c) && (re_c)) NS = WRITE_SRAM;
else if ((sram_sel) && (wr_c) && (~re_c)) NS = READ_SRAM;
else if ((flash_sel) && (~wr_c) && (re_c)) NS = WRITE_FLASH;
else if ((flash_sel) && (wr_c) && (~re_c)) NS = READ_FLASH;
else if ((ram_sel) && (~wr_c) && (re_c))NS = WRITE_RAM;
else if ((ram_sel) && (wr_c) && (~re_c))NS = READ_RAM;
else  NS = IDLE;
end
READ_RAM: begin
if  ((sram_sel) && (~wr_c) && (re_c)) NS = WRITE_SRAM;
else if ((sram_sel) && (wr_c) && (~re_c)) NS = READ_SRAM;
else if ((flash_sel) && (~wr_c) && (re_c)) NS = WRITE_FLASH;
else if ((flash_sel) && (wr_c) && (~re_c)) NS = READ_FLASH;
else if ((ram_sel) && (~wr_c) && (re_c))NS = WRITE_RAM;
else if ((ram_sel) && (wr_c) && (~re_c))NS = READ_RAM;
else  NS = IDLE;
end
default:
  NS = IDLE;
endcase
end
//////////////////////////3rd always block, the sequential FSM output////////////////////////
always @ (posedge clk_c or negedge rst_c)
begin
  if (!rst_c)begin
  {lb_n,ub_n} <= 2'b11;
  {we_n,oe_n} <= 2'b11;
  {ce_sn,ce_fn,ce_rn} <= 3'b111;
  add <= 17'b0;
  dataout_c <= 16'b0;
  end
  elsebegin
  {lb_n,ub_n} <= 2'b11;
  {we_n,oe_n} <= 2'b11;
  {ce_sn,ce_fn,ce_rn} <= 3'b111;
  add <= 17'b0;
  dataout_c <= 16'b0;
  
  case (NS)
  IDLE: begin
  {lb_n,ub_n} <= 2'b11;
  {we_n,oe_n} <= 2'b11;
  {ce_sn,ce_fn,ce_rn} <= 3'b111;
  add <= 17'b0;
  dataout_c <= 16'b0;
  end
  WRITE_SRAM: begin
  {lb_n,ub_n} <= 2'b00;
  {we_n,oe_n} <= 2'b01;
  {ce_sn,ce_fn,ce_rn} <= 3'b011;
  add <= add_c;
  dataout_c <= 16'b0;
  temp_data <= datain_c;
  end
  READ_SRAM: begin
  {lb_n,ub_n} <= 2'b00;
  {we_n,oe_n} <= 2'b10;
  {ce_sn,ce_fn,ce_rn} <= 3'b011;
  add <= add_c;
  dataout_c <= data;
  end
  WRITE_FLASH: begin
  {lb_n,ub_n} <= 2'b11;
  {we_n,oe_n} <= 2'b01;
  {ce_sn,ce_fn,ce_rn} <= 3'b101;
  add <= add_c;
  dataout_c <= 16'b0;
  temp_data <= datain_c;
  end
  READ_FLASH: begin
  {lb_n,ub_n} <= 2'b11;
  {we_n,oe_n} <= 2'b10;
  {ce_sn,ce_fn,ce_rn} <= 3'b101;
  add <= add_c;
  dataout_c <= data;
  end
  WRITE_RAM:begin
  {lb_n,ub_n} <= 2'b11;
  {we_n,oe_n} <= 2'b01;
  {ce_sn,ce_fn,ce_rn} <= 3'b110;
  add <= add_c;
  dataout_c <= 16'b0;
  temp_data <= datain_c;
  end
  READ_RAM:begin
  {lb_n,ub_n} <= 2'b11;
  {we_n,oe_n} <= 2'b10;
  {ce_sn,ce_fn,ce_rn} <= 3'b110;
  add <= add_c;
  dataout_c <= data;
  end
  endcase
  end
end
endmodule  

Quartus2 综合的结果:见附件

为什么状态机没有任何输出呢???望高人指点。
usb 发表于 2010-6-26 02:34:14 | 显示全部楼层
你用时钟沿去采样当前状态,输出结果,不能给初值的(复位信号无效时),组合电路才这样使用
interige 发表于 2010-6-26 02:36:18 | 显示全部楼层
你是说把第三个always中的else后面的<br>
<br>
&nbsp; &nbsp;&nbsp; &nbsp;{lb_n,ub_n} &lt;= 2'b11;<br>
&nbsp; &nbsp;&nbsp; &nbsp;{we_n,oe_n} &lt;= 2'b11;<br>
&nbsp; &nbsp;&nbsp; &nbsp;{ce_sn,ce_fn,ce_rn} &lt;= 3'b111;<br>
&nbsp; &nbsp;&nbsp; &nbsp;add &lt;= 17'b0;<br>
&nbsp; &nbsp;&nbsp; &nbsp;dataout_c &lt;= 16'b0;<br>
<br>
去掉吧。好象还是不行喔:(
CCIE 发表于 2010-6-26 02:56:02 | 显示全部楼层
buzhidao a&nbsp;&nbsp;aaaaaaaaaaa
UFP 发表于 2010-6-26 03:55:19 | 显示全部楼层
把时序电路里的状态换成当前态(CS)试试!
您需要登录后才可以回帖 登录 | 我要注册

本版积分规则

关闭

站长推荐上一条 /1 下一条

QQ|小黑屋|手机版|Archiver|集成电路技术分享 ( 京ICP备20003123号-1 )

GMT+8, 2024-5-16 01:16 , Processed in 0.087828 second(s), 19 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表