Sprinter: добавить отладку C-исходников и интеграцию VS Code

This commit is contained in:
2026-09-15 17:58:41 +03:00
parent 50c6e56b7b
commit e4695b8281
62 changed files with 7147 additions and 27 deletions
+12
View File
@@ -0,0 +1,12 @@
/* Репро карты строк и типов; global/static должны иметь разные адреса. */
#include "common.h"
int total;
const char *debug_looking_text = "Fmain$text$0_0$0 Lmain.fake";
static signed char counter;
unsigned char helper(unsigned char value);
int main(void)
{
counter = -7;
total = helper(transform(3));
return total + counter;
}