| 1 | /*------------------------------------------------------------\ |
|---|
| 2 | | | |
|---|
| 3 | | Tool : systemcass | |
|---|
| 4 | | | |
|---|
| 5 | | File : sc_main.cc | |
|---|
| 6 | | | |
|---|
| 7 | | Author : Buchmann Richard | |
|---|
| 8 | | Taktak Sami | |
|---|
| 9 | | | |
|---|
| 10 | | Date : 09_07_2004 | |
|---|
| 11 | | | |
|---|
| 12 | /------------------------------------------------------------*/ |
|---|
| 13 | |
|---|
| 14 | /* |
|---|
| 15 | * This file is part of the Disydent Project |
|---|
| 16 | * Copyright (C) Laboratoire LIP6 - Département ASIM |
|---|
| 17 | * Universite Pierre et Marie Curie |
|---|
| 18 | * |
|---|
| 19 | * Home page : http://www-asim.lip6.fr/disydent |
|---|
| 20 | * E-mail : mailto:richard.buchmann@lip6.fr |
|---|
| 21 | * |
|---|
| 22 | * This library is free software; you can redistribute it and/or modify it |
|---|
| 23 | * under the terms of the GNU Library General Public License as published |
|---|
| 24 | * by the Free Software Foundation; either version 2 of the License, or (at |
|---|
| 25 | * your option) any later version. |
|---|
| 26 | * |
|---|
| 27 | * Disydent is distributed in the hope that it will be |
|---|
| 28 | * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 29 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General |
|---|
| 30 | * Public License for more details. |
|---|
| 31 | * |
|---|
| 32 | * You should have received a copy of the GNU General Public License along |
|---|
| 33 | * with the GNU C Library; see the file COPYING. If not, write to the Free |
|---|
| 34 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
|---|
| 35 | */ |
|---|
| 36 | |
|---|
| 37 | #ifndef __SYSTEMC_H__ |
|---|
| 38 | #define __SYSTEMC_H__ |
|---|
| 39 | |
|---|
| 40 | #include <systemc> |
|---|
| 41 | |
|---|
| 42 | |
|---|
| 43 | using sc_core::method_process_t; |
|---|
| 44 | using sc_core::sc_port_base; |
|---|
| 45 | using sc_core::sc_object; |
|---|
| 46 | using sc_core::sc_interface; |
|---|
| 47 | using sc_core::sc_module; |
|---|
| 48 | using sc_core::sc_module_name; |
|---|
| 49 | using sc_core::sc_event; |
|---|
| 50 | using sc_core::sc_event_finder; |
|---|
| 51 | using sc_core::sc_sensitive; |
|---|
| 52 | using sc_core::sc_sensitive_pos; |
|---|
| 53 | using sc_core::sc_sensitive_neg; |
|---|
| 54 | |
|---|
| 55 | ///////////////////////////////// |
|---|
| 56 | // Ports & Signals |
|---|
| 57 | ///////////////////////////////// |
|---|
| 58 | using sc_core::sc_time; |
|---|
| 59 | using sc_core::sc_simulation_time; |
|---|
| 60 | using sc_core::sc_time_stamp; |
|---|
| 61 | |
|---|
| 62 | using sc_core::sc_in; |
|---|
| 63 | using sc_core::sc_inout; |
|---|
| 64 | using sc_core::sc_out; |
|---|
| 65 | using sc_core::sc_signal; |
|---|
| 66 | using sc_core::sc_port_b; |
|---|
| 67 | using sc_core::sc_signal_base; |
|---|
| 68 | using sc_core::sc_clock; |
|---|
| 69 | |
|---|
| 70 | using sc_core::sc_trace_file; |
|---|
| 71 | |
|---|
| 72 | using sc_core::method_process_list_t; |
|---|
| 73 | |
|---|
| 74 | using sc_dt::sc_bit; |
|---|
| 75 | using sc_dt::sc_bv; |
|---|
| 76 | using sc_dt::sc_logic; |
|---|
| 77 | using sc_dt::sc_lv; |
|---|
| 78 | using sc_dt::sc_unsigned; |
|---|
| 79 | using sc_dt::sc_signed; |
|---|
| 80 | //using sc_dt::sc_int_base; |
|---|
| 81 | using sc_dt::sc_int; |
|---|
| 82 | using sc_dt::sc_uint; |
|---|
| 83 | using sc_dt::sc_bigint; |
|---|
| 84 | using sc_dt::sc_biguint; |
|---|
| 85 | //using sc_dt::sc_uint_base; |
|---|
| 86 | |
|---|
| 87 | using std::ios; |
|---|
| 88 | using std::cerr; |
|---|
| 89 | |
|---|
| 90 | #endif |
|---|
| 91 | |
|---|
| 92 | /* |
|---|
| 93 | # Local Variables: |
|---|
| 94 | # tab-width: 4; |
|---|
| 95 | # c-basic-offset: 4; |
|---|
| 96 | # c-file-offsets:((innamespace . 0)(inline-open . 0)); |
|---|
| 97 | # indent-tabs-mode: nil; |
|---|
| 98 | # End: |
|---|
| 99 | # |
|---|
| 100 | # vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
|---|
| 101 | */ |
|---|
| 102 | |
|---|