diff options
| author | fig02 <fig02srl@gmail.com> | 2025-04-02 22:04:08 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-02 22:04:08 -0400 |
| commit | ba9ca90c15ad9b9a24b15811bcffba57ac6dd91d (patch) | |
| tree | df3e62bfa3d27f4238dddde08504174131699f38 /src/code | |
| parent | dc9a1dca1ebdcb5b80b1f18e769dc89a3f5b1d10 (diff) | |
system_heap -> runtime (#2500)
* very light documentation for runtime
* more renaming
* one more rename
* RunTime -> Runtime
Diffstat (limited to 'src/code')
| -rw-r--r-- | src/code/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/main.c b/src/code/main.c index fffc72194..79c40658c 100644 --- a/src/code/main.c +++ b/src/code/main.c @@ -109,7 +109,7 @@ void Main(void* arg) { gSystemHeapSize = fb - systemHeapStart; PRINTF(T("システムヒープ初期化 %08x-%08x %08x\n", "System heap initialization %08x-%08x %08x\n"), systemHeapStart, fb, gSystemHeapSize); - SystemHeap_Init((void*)systemHeapStart, gSystemHeapSize); // initializes the system heap + Runtime_Init((void*)systemHeapStart, gSystemHeapSize); #if DEBUG_FEATURES { |
