sc_main.hh (12860:6051cef4adec) sc_main.hh (12926:2b4c3973269f)
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

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

82 {
83 SC_ELABORATION = 0x1,
84 SC_BEFORE_END_OF_ELABORATION = 0x02,
85 SC_END_OF_ELABORATION = 0x04,
86 SC_START_OF_SIMULATION = 0x08,
87 SC_RUNNING = 0x10,
88 SC_PAUSED = 0x20,
89 SC_STOPPED = 0x40,
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

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

82 {
83 SC_ELABORATION = 0x1,
84 SC_BEFORE_END_OF_ELABORATION = 0x02,
85 SC_END_OF_ELABORATION = 0x04,
86 SC_START_OF_SIMULATION = 0x08,
87 SC_RUNNING = 0x10,
88 SC_PAUSED = 0x20,
89 SC_STOPPED = 0x40,
90 SC_END_OF_SIMULATION = 0x80
90 SC_END_OF_SIMULATION = 0x80,
91
92 // Nonstandard
93 SC_END_OF_INITIALIZATION = 0x100,
94 SC_END_OF_UPDATE = 0x400,
95 SC_BEFORE_TIMESTEP = 0x800,
96 SC_STATUS_ANY = 0xdff
91 };
92
93 sc_status sc_get_status();
94} // namespace sc_core
95
96#endif //__SYSTEMC_EXT_CORE_SC_MAIN_HH__
97 };
98
99 sc_status sc_get_status();
100} // namespace sc_core
101
102#endif //__SYSTEMC_EXT_CORE_SC_MAIN_HH__