minor formatting.

This commit is contained in:
Martin Preuss
2026-03-04 23:24:24 +01:00
parent e6e1bf0535
commit 8c59b92100

View File

@@ -78,6 +78,7 @@ Heap_Init:
; @param r25:r24 number of bytes to alloc
; @return CFLAG set of okay, cleared otherwise
; @return X start of allocated memory
; @clobbers r16, r17, r18, r19, r24, r25, X
Heap_Alloc:
rjmp heapAllocFirstFit
@@ -92,6 +93,7 @@ Heap_Alloc:
; @param r25:r24 number of bytes to alloc
; @return CFLAG set of okay, cleared otherwise
; @return X start of allocated memory
; @clobbers r16, r17, r18, r19, r24, r25, X
heapAllocFirstFit:
adiw r25:r24, 3 ; align size to next multiple of 4