thermosphere: unfuck qemu JIT, fix exc. handling bug, add cache funcs

This commit is contained in:
TuxSH
2019-07-29 22:38:44 +02:00
parent 16cfa1305d
commit 61b6f06766
6 changed files with 274 additions and 25 deletions

10
thermosphere/src/arm.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
void flush_dcache_all(void);
void invalidate_dcache_all(void);
void flush_dcache_range(const void *start, const void *end);
void invalidate_dcache_range(const void *start, const void *end);
void invalidate_icache_all_inner_shareable(void);
void invalidate_icache_all(void);