Add simpler method for relocating functions to RAM. (#21804)

This commit is contained in:
Nick Brassel
2023-11-22 12:08:52 +11:00
committed by GitHub
parent 0fcd13f552
commit 3a5e4253fc
4 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
// Copyright 2023 Nick Brassel (@tzarc)
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#define RESIDENT_IN_RAM(funcname) __attribute__((section(".ram0_init." #funcname), noinline)) funcname
#if __has_include_next("_util.h")
# include_next "_util.h"
#endif