sc_module.hh (12837:413a7b490b1b) sc_module.hh (12864:7f28dd4f33ac)
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

--- 127 unchanged lines hidden (view full) ---

136
137 virtual const std::vector<sc_object *> &get_child_objects() const;
138 virtual const std::vector<sc_event *> &get_child_events() const;
139
140 protected:
141 sc_module(const sc_module_name &);
142 sc_module();
143
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

--- 127 unchanged lines hidden (view full) ---

136
137 virtual const std::vector<sc_object *> &get_child_objects() const;
138 virtual const std::vector<sc_event *> &get_child_events() const;
139
140 protected:
141 sc_module(const sc_module_name &);
142 sc_module();
143
144 /* Deprecated, but used in the regression tests. */
145 void end_module() {}
146
144 void reset_signal_is(const sc_in<bool> &, bool);
145 void reset_signal_is(const sc_inout<bool> &, bool);
146 void reset_signal_is(const sc_out<bool> &, bool);
147 void reset_signal_is(const sc_signal_in_if<bool> &, bool);
148
149 void async_reset_signal_is(const sc_in<bool> &, bool);
150 void async_reset_signal_is(const sc_inout<bool> &, bool);
151 void async_reset_signal_is(const sc_out<bool> &, bool);

--- 95 unchanged lines hidden ---
147 void reset_signal_is(const sc_in<bool> &, bool);
148 void reset_signal_is(const sc_inout<bool> &, bool);
149 void reset_signal_is(const sc_out<bool> &, bool);
150 void reset_signal_is(const sc_signal_in_if<bool> &, bool);
151
152 void async_reset_signal_is(const sc_in<bool> &, bool);
153 void async_reset_signal_is(const sc_inout<bool> &, bool);
154 void async_reset_signal_is(const sc_out<bool> &, bool);

--- 95 unchanged lines hidden ---