OpenCores
URL https://opencores.org/ocsvn/open8_urisc/open8_urisc/trunk

Subversion Repositories open8_urisc

[/] [open8_urisc/] [trunk/] [VHDL/] [o8_hd44780_4b.vhd] - Diff between revs 189 and 191

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 189 Rev 191
Line 258... Line 258...
    if( Reset = Reset_Level )then
    if( Reset = Reset_Level )then
      Reg_Addr_q        <= (others => '0');
      Reg_Addr_q        <= (others => '0');
      Wr_Data_q         <= (others => '0');
      Wr_Data_q         <= (others => '0');
      Wr_En             <= '0';
      Wr_En             <= '0';
      Rd_En             <= '0';
      Rd_En             <= '0';
      Rd_Data           <= (others => '0');
      Rd_Data           <= OPEN8_NULLBUS;
 
 
      Reg_Valid         <= '0';
      Reg_Valid         <= '0';
      Reg_Sel           <= '0';
      Reg_Sel           <= '0';
      Reg_Data          <= x"00";
      Reg_Data          <= x"00";
 
 
Line 288... Line 288...
            LCD_Bright  <= Wr_Data_q;
            LCD_Bright  <= Wr_Data_q;
          when others => null;
          when others => null;
        end case;
        end case;
      end if;
      end if;
 
 
      Rd_Data           <= (others => '0');
      Rd_Data           <= OPEN8_NULLBUS;
      Rd_En             <= Addr_Match and Rd_Enable;
      Rd_En             <= Addr_Match and Rd_Enable;
      if( Rd_En = '1' )then
      if( Rd_En = '1' )then
        case( Reg_Addr_q )is
        case( Reg_Addr_q )is
          when "00" | "01" =>
          when "00" | "01" =>
            Rd_Data(7)  <= Tx_Ready;
            Rd_Data(7)  <= Tx_Ready;

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.