aboutsummaryrefslogtreecommitdiffstats
path: root/source/conversion.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-10-30 16:49:20 -0400
committerClyne Sullivan <clyne@bitgloo.com>2021-10-30 16:49:20 -0400
commitff2054f2cb8a780936d95741e1daa7df789fa246 (patch)
tree1980e1f75df9555421b3206d153adaeff9c86036 /source/conversion.cpp
parent6f1c5203f14f82b6a10c9756ef1dc39bc8631ec0 (diff)
fix fault handling; fix LEDs for rev2
Diffstat (limited to 'source/conversion.cpp')
-rw-r--r--source/conversion.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/conversion.cpp b/source/conversion.cpp
index c9dc0c9..6fdea07 100644
--- a/source/conversion.cpp
+++ b/source/conversion.cpp
@@ -83,11 +83,11 @@ thread_t *ConversionManager::getMonitorHandle()
return m_thread_monitor;
}
-void ConversionManager::abort()
+void ConversionManager::abort(bool fpu_stacked)
{
ELFManager::unload();
EM.add(Error::ConversionAborted);
- run_status = RunStatus::Recovering;
+ //run_status = RunStatus::Recovering;
// Confirm that the exception return thread is the algorithm...
uint32_t *psp;
@@ -104,7 +104,7 @@ void ConversionManager::abort()
// We do this by rebuilding the thread's stacked exception return.
auto newpsp = reinterpret_cast<uint32_t *>(m_thread_runner_stack.data() +
m_thread_runner_stack.size() -
- 8 * sizeof(uint32_t));
+ (fpu_stacked ? 26 : 8) * sizeof(uint32_t));
// Set the LR register to the thread's entry point.
newpsp[5] = reinterpret_cast<uint32_t>(threadRunner);
// Overwrite the instruction we'll return to with "bx lr" (jump to address in LR).