avr: added some unit tests for LIST and TREE.

This commit is contained in:
Martin Preuss
2025-06-02 21:13:01 +02:00
parent 5153bd2f69
commit cd1fce313e
7 changed files with 909 additions and 49 deletions

View File

@@ -72,6 +72,19 @@ Heap_Init:
; ---------------------------------------------------------------------------
; @routine Heap_Alloc
;
; @param r25:r24 number of bytes to alloc
; @return CFLAG set of okay, cleared otherwise
; @return X start of allocated memory
Heap_Alloc:
rjmp heapAllocFirstFit
; @end
; ---------------------------------------------------------------------------
; @routine heapAllocFirstFit