From 106729c4b68d534025b30f72f0c532275762b076 Mon Sep 17 00:00:00 2001 From: Brad Nelson Date: Thu, 14 Jul 2022 21:24:00 -0700 Subject: [PATCH] Fixed esp32 build break bug. --- esp32/builtins.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esp32/builtins.cpp b/esp32/builtins.cpp index 902a938..6cfd5d1 100644 --- a/esp32/builtins.cpp +++ b/esp32/builtins.cpp @@ -60,7 +60,7 @@ static void IRAM_ATTR HandleInterrupt(void *arg) { struct handle_interrupt_args *args = (struct handle_interrupt_args *) arg; cell_t code[2]; code[0] = args->xt; - code[1] = g_sys.YIELD_XT; + code[1] = g_sys->YIELD_XT; cell_t fstack[INTERRUPT_STACK_CELLS]; cell_t rstack[INTERRUPT_STACK_CELLS]; cell_t stack[INTERRUPT_STACK_CELLS];