mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 10:53:16 +01:00
9 lines
74 B
Plaintext
9 lines
74 B
Plaintext
ENTRY(_start)
|
|
|
|
SECTIONS
|
|
{
|
|
_start = .;
|
|
.data : { *(.data) }
|
|
_end = .;
|
|
}
|