summaryrefslogtreecommitdiff
path: root/src/systemc/tests/systemc/misc/sim_tests/cycle_dw8051_demo/peripheral.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/tests/systemc/misc/sim_tests/cycle_dw8051_demo/peripheral.h')
-rw-r--r--src/systemc/tests/systemc/misc/sim_tests/cycle_dw8051_demo/peripheral.h97
1 files changed, 97 insertions, 0 deletions
diff --git a/src/systemc/tests/systemc/misc/sim_tests/cycle_dw8051_demo/peripheral.h b/src/systemc/tests/systemc/misc/sim_tests/cycle_dw8051_demo/peripheral.h
new file mode 100644
index 000000000..d0e73ffb3
--- /dev/null
+++ b/src/systemc/tests/systemc/misc/sim_tests/cycle_dw8051_demo/peripheral.h
@@ -0,0 +1,97 @@
+/*****************************************************************************
+
+ Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
+ more contributor license agreements. See the NOTICE file distributed
+ with this work for additional information regarding copyright ownership.
+ Accellera licenses this file to you under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with the
+ License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied. See the License for the specific language governing
+ permissions and limitations under the License.
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ peripheral.h --
+
+ Original Author: Martin Janssen, Synopsys, Inc., 2002-02-15
+
+ *****************************************************************************/
+
+/*****************************************************************************
+
+ MODIFICATION LOG - modifiers, enter your name, affiliation, date and
+ changes you are making here.
+
+ Name, Affiliation, Date:
+ Description of Modification:
+
+ *****************************************************************************/
+
+#include "common.h"
+
+SC_MODULE( peripheral )
+{
+ SC_HAS_PROCESS( peripheral );
+
+ sc_in_clk clk;
+
+ /* Ports( other than clk) */
+ const signal_bool_vector16& mem_addr;
+ const signal_bool_vector8& mem_data_out;
+ signal_bool_vector8& mem_data_in;
+ const sc_signal<bool>& mem_wr_n;
+ const sc_signal<bool>& mem_rd_n;
+ const sc_signal<bool>& mem_pswr_n;
+ const sc_signal<bool>& mem_psrd_n;
+ const sc_signal<bool>& mem_ale;
+ sc_signal<bool>& mem_ea_n;
+
+ const sc_signal<bool>& p0_mem_reg_n;
+ const sc_signal<bool>& p0_addr_data_n;
+ const sc_signal<bool>& p2_mem_reg_n;
+
+ peripheral(sc_module_name NAME,
+ sc_clock& TICK,
+ const signal_bool_vector16& MEM_ADDR,
+ const signal_bool_vector8& MEM_DATA_OUT,
+ signal_bool_vector8& MEM_DATA_IN,
+ const sc_signal<bool>& MEM_WR_N,
+ const sc_signal<bool>& MEM_RD_N,
+ const sc_signal<bool>& MEM_PSWR_N,
+ const sc_signal<bool>& MEM_PSRD_N,
+ const sc_signal<bool>& MEM_ALE,
+ sc_signal<bool>& MEM_EA_N,
+
+ const sc_signal<bool>& P0_MEM_REG_N,
+ const sc_signal<bool>& P0_ADDR_DATA_N,
+ const sc_signal<bool>& P2_MEM_REG_N
+ )
+ :
+ mem_addr(MEM_ADDR),
+ mem_data_out(MEM_DATA_OUT),
+ mem_data_in(MEM_DATA_IN),
+ mem_wr_n(MEM_WR_N),
+ mem_rd_n(MEM_RD_N),
+ mem_pswr_n(MEM_PSWR_N),
+ mem_psrd_n(MEM_PSRD_N),
+ mem_ale(MEM_ALE),
+ mem_ea_n(MEM_EA_N),
+ p0_mem_reg_n(P0_MEM_REG_N),
+ p0_addr_data_n(P0_ADDR_DATA_N),
+ p2_mem_reg_n(P2_MEM_REG_N)
+ {
+ clk(TICK);
+ SC_CTHREAD( entry, clk.pos() );
+ }
+
+ /* Process functionality in member function below */
+ void entry();
+};