Add header for PLACE_IN_ITCM

This commit is contained in:
Jeff Epler 2023-09-20 11:19:57 -05:00
parent e05f79a9c0
commit 0c64275cc6
No known key found for this signature in database
GPG Key ID: D5BF15AB975AB4DE
10 changed files with 27 additions and 7 deletions

View File

@ -24,3 +24,5 @@ numer
arithmetics
ftbfs
straightaway
ftbs
ftb

View File

@ -27,6 +27,8 @@
#include <stdlib.h>
#include <assert.h>
#include "supervisor/linker.h" // PLACE_IN_ITCM
#include "py/runtime.h"
void PLACE_IN_ITCM(mp_arg_check_num_sig)(size_t n_args, size_t n_kw, uint32_t sig) {

View File

@ -29,6 +29,8 @@
#include <stdio.h>
#include <string.h>
#include "supervisor/linker.h" // CIRCUITPY: PLACE_IN_ITCM
#include "py/gc.h"
#include "py/runtime.h"
@ -618,7 +620,7 @@ bool gc_alloc_possible(void) {
#if MICROPY_GC_SPLIT_HEAP
return MP_STATE_MEM(gc_last_free_area) != 0;
#else
area = &MP_STATE_MEM(area) != 0;
return MP_STATE_MEM(area).gc_pool_start != 0;
#endif
}

View File

@ -29,6 +29,8 @@
#include <stdarg.h>
#include <assert.h>
#include "supervisor/linker.h" // CIRUCITPY: PLACE_IN_TCM
#include "shared/runtime/interrupt_char.h"
#include "py/obj.h"
#include "py/objtype.h"

View File

@ -28,6 +28,8 @@
#include <string.h>
#include <assert.h>
#include "supervisor/linker.h" // CIRUCITPY: PLACE_IN_ITCM
#include "py/runtime.h"
#include "py/builtin.h"
#include "py/objtype.h"

View File

@ -28,6 +28,8 @@
#include <string.h>
#include <assert.h>
#include "supervisor/linker.h" // CIRUCITPY: PLACE_IN_ITCM
#include "py/objtuple.h"
#include "py/objfun.h"
#include "py/runtime.h"

View File

@ -27,6 +27,8 @@
#include <stdlib.h>
#include <assert.h>
#include "supervisor/linker.h" // CIRUCITPY: PLACE_IN_ITCM
#include "py/nlr.h"
#include "py/objproperty.h"
#include "py/runtime.h"

View File

@ -28,6 +28,8 @@
#include <string.h>
#include <stdio.h>
#include "supervisor/linker.h" // CIRCUITPY: PLACE_IN_ITCM
#include "py/mpstate.h"
#include "py/qstr.h"
#include "py/gc.h"

View File

@ -31,6 +31,8 @@
#include <string.h>
#include <unistd.h>
#include "supervisor/linker.h" // PLACE_IN_ITCM
#include "py/parsenum.h"
#include "py/compile.h"
#include "py/objstr.h"

View File

@ -24,6 +24,8 @@
* THE SOFTWARE.
*/
#include "supervisor/linker.h" // PLACE_IN_ITCM
#include "py/runtime.h"
#include "py/stackctrl.h"