KallistiOS git master
Independent SDK for the Sega Dreamcast
Loading...
Searching...
No Matches
linker.h
Go to the documentation of this file.
1/* KallistiOS ##version##
2
3 include/kos/linker.h
4 Copyright (C) 2025 Paul Cercueil
5*/
6
7/** \file kos/linker.h
8 \brief Linker script related definitions and macros.
9 \ingroup linker
10
11 \author Paul Cercueil
12*/
13
14#ifndef __KOS_LINKER_H
15#define __KOS_LINKER_H
16
17#include <kos/cdefs.h>
18__BEGIN_DECLS
19
20#include <stdint.h>
21
22extern uint8_t _bss_start[];
23extern uint8_t end[];
24
25__END_DECLS
26
27#endif /* __KOS_LINKER_H */
Various common macros used throughout the codebase.
uint8_t end[]
uint8_t _bss_start[]