source: trunk/IPs/systemC/Environnement/RamLock/src/RamLock_reset.cpp @ 78

Last change on this file since 78 was 78, checked in by rosiere, 16 years ago

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 size: 246 bytes
Line 
1#include "../include/RamLock.h"
2
3namespace environnement {
4namespace ramlock {
5
6  void RamLock::reset (void)
7  {
8    // Take all lock and set UNLOCK value
9    for (uint32_t it = 0; it < _param->_size; it ++)
10      _lock [it] = UNLOCK;
11  }
12
13};
14};
Note: See TracBrowser for help on using the repository browser.