Lines Matching +full:ram +full:- +full:region
4 * SPDX-License-Identifier: Apache-2.0
41 /* Determine where to put the devnull region. It should be adjacent to the ROM
42 * region. If ROM starts after RAM or the distance between ROM and RAM is big
43 * enough to fit the devnull region then devnull region is placed just after
44 * the ROM region. If it cannot be done then the devnull region is placed before
45 * the ROM region. It is possible that the devnull region cannot be placed
46 * adjacent to the ROM (e.g. ROM starts at 0 and RAM follows ROM). In that
47 * case compilation fails and the devnull region is not supported in that
53 #define DEVNULL_ADDR (RAM_ADDR - DEVNULL_SIZE)
60 #if ((ROM_ADDR > RAM_ADDR) && ((MAX_ADDR - ROM_END_ADDR) >= DEVNULL_SIZE)) || \
64 #define DEVNULL_ADDR (ROM_ADDR - DEVNULL_SIZE)
66 #error "Cannot place devnull segment adjacent to ROM region."