Skip to content

Commit

Permalink
#0: Modified kernel storage location
Browse files Browse the repository at this point in the history
  • Loading branch information
sagarwalTT committed Oct 28, 2024
1 parent 9674eb7 commit 1954b77
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ constexpr ProgrammableCoreType sem_core_type = static_cast<ProgrammableCoreType>

#if KERNEL_SIZE_BYTES > 16
constexpr uint32_t empty_kernel_bytes = 16;
uint8_t data1[KERNEL_SIZE_BYTES - empty_kernel_bytes] __attribute__((section("l1_data_test_only")))
__attribute__((used));
[[gnu::section(".text"), gnu::used]]
static uint8_t lorem_ipsum[KERNEL_SIZE_BYTES - empty_kernel_bytes];
#endif

void kernel_main() {
Expand Down

0 comments on commit 1954b77

Please sign in to comment.