summaryrefslogtreecommitdiff
path: root/src/systemc/ext/core/sc_main.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/ext/core/sc_main.hh')
-rw-r--r--src/systemc/ext/core/sc_main.hh8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/systemc/ext/core/sc_main.hh b/src/systemc/ext/core/sc_main.hh
index 24e93503e..b6f5ea13e 100644
--- a/src/systemc/ext/core/sc_main.hh
+++ b/src/systemc/ext/core/sc_main.hh
@@ -87,7 +87,13 @@ namespace sc_core
SC_RUNNING = 0x10,
SC_PAUSED = 0x20,
SC_STOPPED = 0x40,
- SC_END_OF_SIMULATION = 0x80
+ SC_END_OF_SIMULATION = 0x80,
+
+ // Nonstandard
+ SC_END_OF_INITIALIZATION = 0x100,
+ SC_END_OF_UPDATE = 0x400,
+ SC_BEFORE_TIMESTEP = 0x800,
+ SC_STATUS_ANY = 0xdff
};
sc_status sc_get_status();