Skip to content

Commit 72696a6

Browse files
committed
Move cont_init from ram to flash
1 parent 3ce888e commit 72696a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/esp8266/cont_util.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
#define CONT_STACKGUARD 0xfeefeffe
2727

28-
void ICACHE_RAM_ATTR cont_init(cont_t* cont) {
28+
void cont_init(cont_t* cont) {
2929
cont->stack_guard1 = CONT_STACKGUARD;
3030
cont->stack_guard2 = CONT_STACKGUARD;
3131
cont->stack_end = cont->stack + (sizeof(cont->stack) / 4);

0 commit comments

Comments
 (0)