source: trunk/IPs/systemC/Environment/RamLock/src/RamLock_read.cpp @ 80

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

Oups, Environnement is french :P

File size: 264 bytes
Line 
1#include "../include/RamLock.h"
2
3namespace environment {
4namespace ramlock {
5
6  // return the value of the lock and take this
7  bool RamLock::read (uint32_t num_lock)
8  {
9    bool val = _lock [num_lock];
10    _lock [num_lock] = LOCK;
11   
12    return val;
13  }
14};
15};
Note: See TracBrowser for help on using the repository browser.