mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
18 lines
272 B
Raku
18 lines
272 B
Raku
SECTIONS
|
|
{
|
|
. = SIZEOF_HEADERS;
|
|
PROVIDE (foo = 1);
|
|
PROVIDE (bar = 2);
|
|
PROVIDE (baz = 3);
|
|
.data 0x2000 :
|
|
{
|
|
*(.data .rw)
|
|
|
|
PROVIDE (loc1 = ALIGN (., 0x10));
|
|
PROVIDE (loc2 = ALIGN (., 0x10));
|
|
}
|
|
|
|
PROVIDE (loc3 = loc1 + 0x20);
|
|
loc4 = loc2 + 0x20;
|
|
}
|