source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Multiplier/include/Types.h @ 116

Last change on this file since 116 was 116, checked in by moulu, 15 years ago

1) added a generic multiplier (systemC isn't working with 8bits)
2) added a partial functionnal unit vhdl.

  • Property svn:keywords set to Id
File size: 530 bytes
Line 
1#ifndef morpheo_behavioural_generic_multiplier_Types_h
2#define morpheo_behavioural_generic_multiplier_Types_h
3
4/*
5 * $Id: Types.h 116 2009-04-30 13:51:41Z moulu $
6 *
7 * [ Description ]
8 *
9 */
10
11#include "Behavioural/include/Types.h"
12
13namespace morpheo {
14namespace behavioural {
15namespace generic {
16namespace multiplier {
17
18  typedef Tgeneral_data_t Tdata_t;
19
20  typedef struct 
21  {
22    Tdata_t MSB;
23    Tdata_t LSB;
24  } result_t;
25
26}; // end namespace multiplier
27}; // end namespace generic
28
29}; // end namespace behavioural
30}; // end namespace morpheo             
31
32#endif
Note: See TracBrowser for help on using the repository browser.