Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

[SOLVED] bus driving problem..

Status
Not open for further replies.

fatihtir1

Newbie level 2
Joined
Apr 4, 2012
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,302
Hello,

I use picoblaze for sram read/write operations. I see a problem in simulation of sram_ad writing (below code). 16th bit of Sram_ad ( sram_ad(16) ) is seen as X in the simulation, no problem for the other bits. But i drive out_port to all bits of sram_ad by using 3 ports. What is, do you think, the problem.

Regards.

Note: my sram_ad is 18 bits.


--


Code VHDL - [expand]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
output_ports: process(clk)
  begin
 
    if clk'event and clk='1' then
      if write_strobe='1' then
 
        -- Adres [17:16] port C0 hex
        if port_id(7 downto 6)="11" then
          sram_ad(17 downto 16) <= out_port(1 downto 0);
        end if;
 
        -- Adres [15:8] port 80 hex
        if port_id(7 downto 6)="10" then
          sram_ad(15 downto 8) <= out_port;
        end if;
          
          -- Adres [7:0] port 40 hex
        if port_id(7 downto 6)="01" then
          sram_ad(7 downto 0) <= out_port;
        end if;



---------- Post added at 09:01 ---------- Previous post was at 07:06 ----------

Sorry for the question and taking your time.

I noticed I didn't changed a previous driving of these bits. Somewhere on the code:

sram_ad(17 downto 16) <= "00";

I apologize from all you.


--
 
Last edited by a moderator:

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top