diff options
Diffstat (limited to 'qtmips_machine')
-rw-r--r-- | qtmips_machine/qtmipsmachine.cpp | 8 | ||||
-rw-r--r-- | qtmips_machine/qtmipsmachine.h | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/qtmips_machine/qtmipsmachine.cpp b/qtmips_machine/qtmipsmachine.cpp index 1d7523c..f2683fb 100644 --- a/qtmips_machine/qtmipsmachine.cpp +++ b/qtmips_machine/qtmipsmachine.cpp @@ -63,6 +63,14 @@ const Core *QtMipsMachine::core() { return cr; } +const CoreSingle *QtMipsMachine::core_singe() { + return mcnf.pipelined() ? nullptr : (const CoreSingle*)cr; +} + +const CorePipelined *QtMipsMachine::core_pipelined() { + return mcnf.pipelined() ? (const CorePipelined*)cr : nullptr; +} + enum QtMipsMachine::Status QtMipsMachine::status() { return stat; } diff --git a/qtmips_machine/qtmipsmachine.h b/qtmips_machine/qtmipsmachine.h index d130225..dba8932 100644 --- a/qtmips_machine/qtmipsmachine.h +++ b/qtmips_machine/qtmipsmachine.h @@ -25,6 +25,8 @@ public: const Memory *memory(); const Cache *cache(); const Core *core(); + const CoreSingle *core_singe(); + const CorePipelined *core_pipelined(); enum Status { ST_READY, // Machine is ready to be started or step to be called |