Ignore:
Timestamp:
Mar 27, 2008, 11:04:49 AM (16 years ago)
Author:
rosiere
Message:

Add :

  • Execute_loop (must be test systemC)
  • Prediction
    • Direction : predifined scheme
    • Branch Target Buffer
  • iFetch_unit
    • ifetch_queue
    • pc management
  • Decod_unit
    • coming soon : support for custom operation
  • Rename_unit
    • RAT
    • Free_list
    • Dependence RAW check
    • Load store unit pointer
  • New Environnement (hierarchy_memory will remove in a next version)


Modif :

  • Manage Custom Operation
  • All component in execute_loop to use the new statistics management

Not Finish :

  • Return Address Stack
  • Environnement
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Script/unlock.sh

    r2 r78  
    44function usage ()
    55{
    6     echo "Usage   : ${0} file";
    7     echo "unlock file, you can see the lock at \"~/.$(basename file).lock\""
     6    echo "Usage     : ${0} file";
     7    echo "Arguments : ";
     8    echo ' * file : you can see the lock at "${MORPHEO_HOME}/lock/$(basename file).lock"';
     9    echo "Notes     :";
     10    echo " * Morpheo's environnement must be positionned.";
     11
    812    exit;
    913}
     
    1822function main ()
    1923{
    20     if test ${#} -ne 1 -o ! -f ${1}; then
     24    LOCK_DIRECTORY="${MORPHEO_HOME}/lock";
     25
     26    if test ${#} -ne 1 -o -z ${MORPHEO_HOME} -o ! -d ${LOCK_DIRECTORY}; then
    2127        usage ${*};
    2228    fi;
    2329
    24     unlock "${HOME}/.$(basename ${1}).lock"
     30    unlock "${LOCK_DIRECTORY}/$(basename ${1}).lock"
    2531}
    2632
Note: See TracChangeset for help on using the changeset viewer.