HEAP_SIZE
static char heap[HEAP_SIZE]; // In BSS, so uses no space
bzero(heap, HEAP_SIZE);
setheap(heap, (void *)((uintptr_t)heap + HEAP_SIZE));
#ifndef HEAP_SIZE
uboot_heap_end = uboot_heap_start + HEAP_SIZE;