chore: migrate project into clean repository

This commit is contained in:
yuuux
2026-08-13 16:50:52 +08:00
commit d1d25a09e7
27405 changed files with 9422808 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#ifndef __LISA_KV_UTILS_H__
#define __LISA_KV_UTILS_H__
#include "sysheap.h"
#define LISA_KV_MALLOC(size) exram_malloc(4, size)
#define LISA_KV_FREE(ptr) exram_free(ptr)
#endif