• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Hardware/Software Co-Development, Verification…
  3. How will I do a HAL Hdl analysis on vhdl design?

Stats

  • Locked Locked
  • Replies 7
  • Subscribers 50
  • Views 18396
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How will I do a HAL Hdl analysis on vhdl design?

sonam20
sonam20 over 13 years ago

I want to do a HAL analysis on VHDL design.What are the procedure and steps for that?/

Please tell me

thanks,

Shivani

  • Cancel
Parents
  • sonam20
    sonam20 over 13 years ago

    HI,

    I found these type of error after compilation. Please tell me how to resolve them.

     ncvhdl_p: *E,LIBNOM (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,35|18): logical library name must be mapped to design library [11.2].
    USE DESIGN.BB_PKG.All;
             |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,38|9): identifier (DESIGN) is not declared [10.3].
    USE DESIGN.WB_INTERNAL_PKG.ALL;
             |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,39|9): identifier (DESIGN) is not declared [10.3].
    USE DESIGN.COMMON_PKG.ALL;
             |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,40|9): identifier (DESIGN) is not declared [10.3].
        P_SLAVE_BASE_ADDR : slave_addr_a_t(0 TO P_NUM_SLAVES-1)      := (((x"0000"),(x"0280"),(x"0000")),  --! Specifies base address of each slaves
                                         |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,48|37): identifier (SLAVE_ADDR_A_T) is not declared [10.3].
        P_SLAVE_ADDR_SIZE : slave_addr_a_t(0 TO P_NUM_SLAVES-1)      := (((x"007f"),(x"027f"),(x"0000")),     --! Specifies the address size of each slave   
                                         |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,52|37): identifier (SLAVE_ADDR_A_T) is not declared [10.3].
        P_SLAVE_ADDR_CH   : slave_addr_ch_a_t(0 TO P_NUM_SLAVES-1)   := (('1','1','0'),     --! Specifies the active address part of each slave   
                                            |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,56|40): identifier (SLAVE_ADDR_CH_A_T) is not declared [10.3].
        P_SHARE_PRIO      : int_vector(0 TO P_NUM_MASTERS-1)         := (1,2,3,4,5)         --! Priority of master
                                     |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,60|33): identifier (INT_VECTOR) is not declared [10.3].
        wbm_i       : OUT wbm_i_a_type(0 TO P_NUM_MASTERS-1);  --! Wishbone master input interface array
                                     |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,71|33): identifier (WBM_I_A_TYPE) is not declared [10.3].
        wbm_o       : IN  wbm_o_a_type(0 TO P_NUM_MASTERS-1);  --! Wishbone master output interface array
                                     |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,72|33): identifier (WBM_O_A_TYPE) is not declared [10.3].
        wbs_o       : IN  wbs_o_a_type(0 TO P_NUM_SLAVES-1);   --! Wishbone slave output interface array
                                     |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,76|33): identifier (WBS_O_A_TYPE) is not declared [10.3].
        wbs_i       : OUT wbs_i_a_type(0 TO P_NUM_SLAVES-1)    --! Wishbone slave input interface array
                                     |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,77|33): identifier (WBS_I_A_TYPE) is not declared [10.3].
    ARCHITECTURE rtl OF intercon IS
                               |
    ncvhdl_p: *E,ENNOFN (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,82|27): Intermediate file for entity 'INTERCON' could not be loaded, entity may require re-analysis.
    LIBRARY design;
                 |
    ncvhdl_p: *E,LIBNOM (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_dm_bridge.vhd,39|13): logical library name must be mapped to design library [11.2].
    USE design.bb_pkg.ALL;
             |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_dm_bridge.vhd,40|9): identifier (DESIGN) is not declared [10.3].
    USE design.common_pkg.ALL;
             |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_dm_bridge.vhd,41|9): identifier (DESIGN) is not declared [10.3].
        dm_in         : IN dm_in_a_t(0 TO P_NUM_REG_MAP-1);   --! Number of elements = no. of register maps    
                                   |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_dm_bridge.vhd,50|31): identifier (DM_IN_A_T) is not declared [10.3].
        reg_wbs_i     : IN  wbs_i_type;
                                     |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_dm_bridge.vhd,54|33): identifier (WBS_I_TYPE) is not declared [10.3].
        dm_out        : OUT  dm_out_t;   
                                    |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_dm_bridge.vhd,58|32): identifier (DM_OUT_T) is not declared [10.3].
        reg_wbs_o     : OUT wbs_o_type
                                     |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_dm_bridge.vhd,62|33): identifier (WBS_O_TYPE) is not declared [10.3].
    ARCHITECTURE rtl OF wb_dm_bridge IS
                                   |
    ncvhdl_p: *E,ENNOFN (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_dm_bridge.vhd,68|31): Intermediate file for entity 'WB_DM_BRIDGE' could not be loaded, entity may require re-analysis.
      Concatenation: FOR i IN P_NUM_REG_MAP DOWNTO 1 GENERATE BEGIN
                                                              |
    ncvhdl_p: *E,EXPEND (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_dm_bridge.vhd,83|58): expecting the reserved word 'END' [9.7].
    END ARCHITECTURE rtl;
                   |
    ncvhdl_p: *E,OPARCH (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_dm_bridge.vhd,134|15): Optional end architecture is only allowed in 93[1.2].
    ncvhdl_p: Memory Usage - 8.4M program + 4.9M data = 13.2M total
    ncvhdl: CPU Usage - 0.0s system + 0.0s user = 0.0s total (0.1s, 24.0% cpu)

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • sonam20
    sonam20 over 13 years ago

    HI,

    I found these type of error after compilation. Please tell me how to resolve them.

     ncvhdl_p: *E,LIBNOM (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,35|18): logical library name must be mapped to design library [11.2].
    USE DESIGN.BB_PKG.All;
             |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,38|9): identifier (DESIGN) is not declared [10.3].
    USE DESIGN.WB_INTERNAL_PKG.ALL;
             |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,39|9): identifier (DESIGN) is not declared [10.3].
    USE DESIGN.COMMON_PKG.ALL;
             |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,40|9): identifier (DESIGN) is not declared [10.3].
        P_SLAVE_BASE_ADDR : slave_addr_a_t(0 TO P_NUM_SLAVES-1)      := (((x"0000"),(x"0280"),(x"0000")),  --! Specifies base address of each slaves
                                         |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,48|37): identifier (SLAVE_ADDR_A_T) is not declared [10.3].
        P_SLAVE_ADDR_SIZE : slave_addr_a_t(0 TO P_NUM_SLAVES-1)      := (((x"007f"),(x"027f"),(x"0000")),     --! Specifies the address size of each slave   
                                         |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,52|37): identifier (SLAVE_ADDR_A_T) is not declared [10.3].
        P_SLAVE_ADDR_CH   : slave_addr_ch_a_t(0 TO P_NUM_SLAVES-1)   := (('1','1','0'),     --! Specifies the active address part of each slave   
                                            |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,56|40): identifier (SLAVE_ADDR_CH_A_T) is not declared [10.3].
        P_SHARE_PRIO      : int_vector(0 TO P_NUM_MASTERS-1)         := (1,2,3,4,5)         --! Priority of master
                                     |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,60|33): identifier (INT_VECTOR) is not declared [10.3].
        wbm_i       : OUT wbm_i_a_type(0 TO P_NUM_MASTERS-1);  --! Wishbone master input interface array
                                     |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,71|33): identifier (WBM_I_A_TYPE) is not declared [10.3].
        wbm_o       : IN  wbm_o_a_type(0 TO P_NUM_MASTERS-1);  --! Wishbone master output interface array
                                     |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,72|33): identifier (WBM_O_A_TYPE) is not declared [10.3].
        wbs_o       : IN  wbs_o_a_type(0 TO P_NUM_SLAVES-1);   --! Wishbone slave output interface array
                                     |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,76|33): identifier (WBS_O_A_TYPE) is not declared [10.3].
        wbs_i       : OUT wbs_i_a_type(0 TO P_NUM_SLAVES-1)    --! Wishbone slave input interface array
                                     |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,77|33): identifier (WBS_I_A_TYPE) is not declared [10.3].
    ARCHITECTURE rtl OF intercon IS
                               |
    ncvhdl_p: *E,ENNOFN (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_generic.vhd,82|27): Intermediate file for entity 'INTERCON' could not be loaded, entity may require re-analysis.
    LIBRARY design;
                 |
    ncvhdl_p: *E,LIBNOM (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_dm_bridge.vhd,39|13): logical library name must be mapped to design library [11.2].
    USE design.bb_pkg.ALL;
             |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_dm_bridge.vhd,40|9): identifier (DESIGN) is not declared [10.3].
    USE design.common_pkg.ALL;
             |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_dm_bridge.vhd,41|9): identifier (DESIGN) is not declared [10.3].
        dm_in         : IN dm_in_a_t(0 TO P_NUM_REG_MAP-1);   --! Number of elements = no. of register maps    
                                   |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_dm_bridge.vhd,50|31): identifier (DM_IN_A_T) is not declared [10.3].
        reg_wbs_i     : IN  wbs_i_type;
                                     |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_dm_bridge.vhd,54|33): identifier (WBS_I_TYPE) is not declared [10.3].
        dm_out        : OUT  dm_out_t;   
                                    |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_dm_bridge.vhd,58|32): identifier (DM_OUT_T) is not declared [10.3].
        reg_wbs_o     : OUT wbs_o_type
                                     |
    ncvhdl_p: *E,IDENTU (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_dm_bridge.vhd,62|33): identifier (WBS_O_TYPE) is not declared [10.3].
    ARCHITECTURE rtl OF wb_dm_bridge IS
                                   |
    ncvhdl_p: *E,ENNOFN (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_dm_bridge.vhd,68|31): Intermediate file for entity 'WB_DM_BRIDGE' could not be loaded, entity may require re-analysis.
      Concatenation: FOR i IN P_NUM_REG_MAP DOWNTO 1 GENERATE BEGIN
                                                              |
    ncvhdl_p: *E,EXPEND (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_dm_bridge.vhd,83|58): expecting the reserved word 'END' [9.7].
    END ARCHITECTURE rtl;
                   |
    ncvhdl_p: *E,OPARCH (/projects/MC_E_E1/wrk/ssharma/shi/trunk/src/design/backbone/wb_con/wb_dm_bridge.vhd,134|15): Optional end architecture is only allowed in 93[1.2].
    ncvhdl_p: Memory Usage - 8.4M program + 4.9M data = 13.2M total
    ncvhdl: CPU Usage - 0.0s system + 0.0s user = 0.0s total (0.1s, 24.0% cpu)

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information