/** * BlueThunder Linker Script for the raspberry Pi! * * * **/ MEMORY { RESERVED (r) : ORIGIN = 0x00000000, LENGTH = 32K INIT_RAM (rwx) : ORIGIN = 0x00008000, LENGTH = 32K RAM (rwx) : ORIGIN = 0x00010000, LENGTH = 128M } ENTRY(_start) SECTIONS { /* * Our init section allows us to place the bootstrap code at address 0x8000 * * This is where the Graphics processor forces the ARM to start execution. * However the interrupt vector code remains at 0x0000, and so we must copy the correct * branch instructions to 0x0000 - 0x001C in order to get the processor to handle interrupts. * */ .init : { KEEP(*(.init)) } > INIT_RAM = 0 .module_entries : { __module_entries_start = .; KEEP(*(.module_entries)) KEEP(*(.module_entries.*)) __module_entries_end = .; __module_entries_size = SIZEOF(.module_entries); } > INIT_RAM /** * This is the main code section, it is essentially of unlimited size. (128Mb). * **/ .text : { *(.text) } > RAM /* * Next we put the data. */ .data : { *(.data) } > RAM .bss : { __bss_start = .; *(.bss) *(.bss.*) __bss_end = .; } > RAM /** * Place HEAP here??? **/ /** * Stack starts at the top of the RAM, and moves down! **/ _estack = ORIGIN(RAM) + LENGTH(RAM); } '/cgit/avr/qmk/firmware/refs/?id=593bfc86a10f8a5e59465eb4440ecc2c9cee66b7'>refslogtreecommitdiffstats
path: root/tmk_core/common/sendchar.h
blob: bd7b94fd99ff7528afa9c9e6f8d48d15b6493c6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34