driver.cpp revision 12855:588919e0e4aa
1/*****************************************************************************
2
3  Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
4  more contributor license agreements.  See the NOTICE file distributed
5  with this work for additional information regarding copyright ownership.
6  Accellera licenses this file to you under the Apache License, Version 2.0
7  (the "License"); you may not use this file except in compliance with the
8  License.  You may obtain a copy of the License at
9
10    http://www.apache.org/licenses/LICENSE-2.0
11
12  Unless required by applicable law or agreed to in writing, software
13  distributed under the License is distributed on an "AS IS" BASIS,
14  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
15  implied.  See the License for the specific language governing
16  permissions and limitations under the License.
17
18 *****************************************************************************/
19
20/*****************************************************************************
21
22  driver.cpp -- Implementation of the driver.
23
24  Original Author: Ali Dasdan, Synopsys, Inc.
25
26 *****************************************************************************/
27
28/*****************************************************************************
29
30  MODIFICATION LOG - modifiers, enter your name, affiliation, date and
31  changes you are making here.
32
33      Name, Affiliation, Date:
34  Description of Modification:
35
36 *****************************************************************************/
37
38// $Log: driver.cpp,v $
39// Revision 1.1.1.1  2006/12/15 20:26:24  acg
40// systemc_tests-2.3
41//
42// Revision 1.4  2006/01/24 21:05:59  acg
43//  Andy Goodrich: replacement of deprecated features with their non-deprecated
44//  counterparts.
45//
46// Revision 1.3  2006/01/19 00:48:20  acg
47// Andy Goodrich: Changes for the fact signal write checking is enabled.
48//
49// Revision 1.2  2006/01/18 00:23:51  acg
50// Change over from SC_NO_WRITE_CHECK to sc_write_check_enable() call.
51//
52
53#define SC_NO_WRITE_CHECK
54#include "systemc.h"
55#include "const.h"
56#include "driver.h"
57
58// Driver's output actions.
59void
60driver_mod::driver_out_proc()
61{
62  //  while (true) {
63  cout << "Driver is up @ " << sc_time_stamp() << endl;
64
65  // Car is at rest.
66  speed_set = 0;
67  reset = false;
68  start = false;
69  wait();
70
71  cout << "Driver started the car @ " << sc_time_stamp() << endl;
72  cout << "Driver set the speed to 40 km/h @ " << sc_time_stamp() << endl;
73  start = true;
74  speed_set = 40;
75  wait();
76
77  cout << "Driver set the speed to 120 km/h @ " << sc_time_stamp() << endl;
78  speed_set = 120;
79  wait();
80
81  cout << "Driver reset the partial distance odometer @ "
82       << sc_time_stamp() << endl;
83  cout << "Driver set the speed to 60 km/h @ " << sc_time_stamp() << endl;
84  reset = true;
85  speed_set = 60;
86  wait();
87
88  cout << "Driver set the speed to 40 km/h @ " << sc_time_stamp() << endl;
89  speed_set = 40;
90  wait();
91
92  cout << "Driver stopped the car @ " << sc_time_stamp() << endl;
93  wait();
94
95  sc_stop();
96  //  }
97}
98
99// Driver's input actions.
100void
101driver_mod::driver_in_proc()
102{
103  if (speed.event()) {
104    cout << "Current speed displayed = "
105         << speed << " km/h @ " << sc_time_stamp() << endl;
106  }
107
108  if (angle.event()) {
109    cout << "Current speedometer angle = " << angle
110         << " degrees @ " << sc_time_stamp() << endl;
111  }
112
113  if (total.event()) {
114    cout << "Current total distance displayed = "
115         << total << " km @ " << sc_time_stamp() << endl;
116  }
117
118  if (partial.event()) {
119    cout << "Current partial distance displayed = "
120         << partial << " km @ " << sc_time_stamp() << endl;
121  }
122}
123
124// End of file
125