Rust character drawing

This commit is contained in:
2025-11-14 09:57:42 +01:00
parent 6bbecc252e
commit d8596b2247
7 changed files with 212 additions and 68 deletions

View File

@@ -44,4 +44,7 @@ SECTIONS
PROVIDE(_memory_start = ORIGIN(datamem));
PROVIDE(_memory_end = ORIGIN(datamem) + LENGTH(datamem));
PROVIDE(_stack_size = 1024); /* 1 KiB */
PROVIDE(_stack_start = ORIGIN(datamem) + LENGTH(datamem));
PROVIDE(_stack_end = _stack_start - _stack_size);
}