util: Move the existing systemc example into a subdirectory.
authorGabe Black <gabeblack@google.com>
Thu, 11 Oct 2018 00:28:09 +0000 (17:28 -0700)
committerGabe Black <gabeblack@google.com>
Fri, 2 Nov 2018 20:42:17 +0000 (20:42 +0000)
commitc71dfc17a7f5601de06085b6c2fe5efd9e3ea11f
tree4c85126f1eee2ec10261b1359900b13bf5888256
parent006eb36634a35f6b6d44ee63254f31ba96ac5267
util: Move the existing systemc example into a subdirectory.

This example is for how to embed gem5 within systemc and make it use
the systemc event queue. This used to be the only method of using
gem5 and systemc together, but now that there are other options, it's
ambiguous to have it as the only thing in the util/systemc directory.

This change moves it into a gem5_within_systemc subdirectory which
clearly shows what type of integration that example corresponds with.

Change-Id: I426d68ccb618397d820bef492cbb1ff8ef4a979b
Reviewed-on: https://gem5-review.googlesource.com/c/13375
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
22 files changed:
util/systemc/Makefile [deleted file]
util/systemc/README [deleted file]
util/systemc/gem5_within_systemc/Makefile [new file with mode: 0644]
util/systemc/gem5_within_systemc/README [new file with mode: 0644]
util/systemc/gem5_within_systemc/main.cc [new file with mode: 0644]
util/systemc/gem5_within_systemc/sc_gem5_control.cc [new file with mode: 0644]
util/systemc/gem5_within_systemc/sc_gem5_control.hh [new file with mode: 0644]
util/systemc/gem5_within_systemc/sc_logger.cc [new file with mode: 0644]
util/systemc/gem5_within_systemc/sc_logger.hh [new file with mode: 0644]
util/systemc/gem5_within_systemc/sc_module.cc [new file with mode: 0644]
util/systemc/gem5_within_systemc/sc_module.hh [new file with mode: 0644]
util/systemc/gem5_within_systemc/stats.cc [new file with mode: 0644]
util/systemc/gem5_within_systemc/stats.hh [new file with mode: 0644]
util/systemc/main.cc [deleted file]
util/systemc/sc_gem5_control.cc [deleted file]
util/systemc/sc_gem5_control.hh [deleted file]
util/systemc/sc_logger.cc [deleted file]
util/systemc/sc_logger.hh [deleted file]
util/systemc/sc_module.cc [deleted file]
util/systemc/sc_module.hh [deleted file]
util/systemc/stats.cc [deleted file]
util/systemc/stats.hh [deleted file]