diff options
| author | Pavel Pisa <pisa@cmp.felk.cvut.cz> | 2019-03-06 23:40:34 +0100 | 
|---|---|---|
| committer | Pavel Pisa <pisa@cmp.felk.cvut.cz> | 2019-03-06 23:40:34 +0100 | 
| commit | 8d0f4806a7ad55710cb190e5a5c9388bd00c50a8 (patch) | |
| tree | 16d5ac856513f44c4b1ecbccdebee151772f64e2 /qtmips_machine/qtmipsmachine.h | |
| parent | 1536045c0d28113892abc9d1023ce395a0e82e94 (diff) | |
| download | qtmips-8d0f4806a7ad55710cb190e5a5c9388bd00c50a8.tar.gz qtmips-8d0f4806a7ad55710cb190e5a5c9388bd00c50a8.tar.bz2 qtmips-8d0f4806a7ad55710cb190e5a5c9388bd00c50a8.zip | |
Enable configuration of syscalls emulation and stop on exception.
Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
Diffstat (limited to 'qtmips_machine/qtmipsmachine.h')
| -rw-r--r-- | qtmips_machine/qtmipsmachine.h | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/qtmips_machine/qtmipsmachine.h b/qtmips_machine/qtmipsmachine.h index 349e0df..b90b96e 100644 --- a/qtmips_machine/qtmipsmachine.h +++ b/qtmips_machine/qtmipsmachine.h @@ -93,6 +93,10 @@ public:      void insert_hwbreak(std::uint32_t address);      void remove_hwbreak(std::uint32_t address);      bool is_hwbreak(std::uint32_t address); +    void set_stop_on_exception(enum ExceptionCause excause, bool value); +    bool get_stop_on_exception(enum ExceptionCause excause) const; +    void set_step_over_exception(enum ExceptionCause excause, bool value); +    bool get_step_over_exception(enum ExceptionCause excause) const;  public slots:      void play(); | 
