From 44c29ab1d13ccf7197ed25efb5f04678f42a906e Mon Sep 17 00:00:00 2001 From: Daniel Thornburgh Date: Sun, 15 Sep 2024 10:23:07 -0700 Subject: [PATCH] [eater] Copy data from ROM to RAM. The Ben Eater platform uses ROM, so it needs to copy the .data initializers from ROM to RAM. Fixes #360. --- mos-platform/eater/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mos-platform/eater/CMakeLists.txt b/mos-platform/eater/CMakeLists.txt index 2a13755b1..16f5c5140 100644 --- a/mos-platform/eater/CMakeLists.txt +++ b/mos-platform/eater/CMakeLists.txt @@ -18,7 +18,7 @@ add_platform_library(eater-crt0 merge_libraries(eater-crt0 common-crt0 common-init-stack - common-copy-zp-data + common-copy-data common-zero-bss common-exit-loop )