Flush pipelines when entering an exception

Former-commit-id: c00754b8156ecac66cc0a72f6a7c73ee700448f0
This commit is contained in:
Michel Heily 2019-07-13 23:33:10 +03:00
parent fb5229705b
commit ab8c067616

View file

@ -49,5 +49,7 @@ impl Core {
// Set PC to vector address // Set PC to vector address
self.pc = vector; self.pc = vector;
self.pipeline_arm.flush();
self.pipeline_thumb.flush();
} }
} }