mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
13 lines
146 B
Perl
13 lines
146 B
Perl
|
SECTIONS
|
||
|
{
|
||
|
.data 0x2000 :
|
||
|
{
|
||
|
LONG (foo)
|
||
|
LONG (bar)
|
||
|
. = ALIGN (0x10);
|
||
|
*(.data)
|
||
|
}
|
||
|
PROVIDE (foo = .);
|
||
|
PROVIDE (bar = .);
|
||
|
}
|