1/*
2 * Copyright 2020, Data61, CSIRO (ABN 41 687 119 230)
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#pragma once
8
9#include <util.h>
10
11/* code that is linked to physical addresses */
12#define PHYS_CODE SECTION(".phys.text")
13
14/* data that is linked to physical addresses */
15#define PHYS_DATA SECTION(".phys.data")
16
17/* bss data that is linked to physical addresses */
18#define PHYS_BSS SECTION(".phys.bss")
19
20