close Warning: Can't synchronize with repository "(default)" (/common/SVN/crkit does not appear to be a Subversion repository.). Look in the Trac log for more information.

Changes between Initial Version and Version 1 of crkit/Software/Firmware/Framework/tutorial/config/modelsim


Ignore:
Timestamp:
Nov 15, 2010, 7:30:51 PM (13 years ago)
Author:
khanhle
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • crkit/Software/Firmware/Framework/tutorial/config/modelsim

    v1 v1  
     1== How to setup Modelsim work folder ==
     2
     3This tutorial explains how to setup a Modelsim work folder.
     4
     5 1. Start Modelsim
     6 2. In Trancript window, enter following commands
     7    {{{
     8    vmap -del work                                 #delete previous work folder mapping
     9    vlib {YOUR_PATH_TO_MODELSIM_WORK_FOLDER}       #create new work folder
     10    vmap work {YOUR_PATH_TO_MODELSIM_WORK_FOLDER}  #map new work folder 
     11    }}}
     12
     13 Example :
     14    {{{
     15    vmap -del work                                 
     16    vlib {d:\mystuff\hw\work}   
     17    vmap work {d:\mystuff\hw\work}   
     18    }}}
     19   
     20 3. Modelsim will automatically update the modelsim.ini file located under ./design/trunk/setup. This change should be removed by deleting the file, and perform
     21    an svn update of the setup folder to get the original modelsim.ini . You may optionally revert Modelsim changes by right-click on modelsim.ini and select TortoiseSVn -> revert option.
     22[..]