Hi @emb02 ,
On my side, I have implemented a method to put a C file into SDRAM. Please refer to <MCUXpresso IDE User Guide> Chapter 20.13.5 Placing specific functions into RAM blocks.

// test.h
#ifndef TEST_H_
#define TEST_H_
#ifdef __cplusplus
extern "C" {
#endif
#include <cr_section_macros.h>
__RAMFUNC(RAM2) void my_function(void);
#ifdef __cplusplus
}
#endif
#endif /* TEST_H_ */
Hope it helps!
Best regards,
Gavin