From 7f49b3503dd1ddf18e5d8a632bcb4c2aa5136184 Mon Sep 17 00:00:00 2001 From: Brad Nelson Date: Fri, 8 Dec 2023 14:44:45 -0800 Subject: [PATCH] Fix bindings bug. --- pico-ice/builtins.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pico-ice/builtins.h b/pico-ice/builtins.h index 3efe6d7..6567d13 100644 --- a/pico-ice/builtins.h +++ b/pico-ice/builtins.h @@ -124,7 +124,7 @@ #else # define OPTIONAL_FPGA_SUPPORT \ YV(ice, ice_fpga_init, ice_fpga_init(n0); DROP) \ - YV(ice, ice_fpga_stop, ice_fpga_stop(); DROP) \ + YV(ice, ice_fpga_stop, ice_fpga_stop()) \ YV(ice, ice_fpga_start, PUSH (ice_fpga_start() ? -1 :0)) #endif