mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 21:49:33 +00:00
17 lines
246 B
Raku
17 lines
246 B
Raku
SECTIONS
|
|
{
|
|
PROVIDE (foo = 1);
|
|
PROVIDE (bar = 2);
|
|
PROVIDE (baz = 3);
|
|
.data 0x2000 :
|
|
{
|
|
*(.data)
|
|
|
|
PROVIDE (loc1 = ALIGN (., 0x10));
|
|
PROVIDE (loc2 = ALIGN (., 0x10));
|
|
}
|
|
|
|
PROVIDE (loc3 = loc1 + 0x20);
|
|
loc4 = loc2 + 0x20;
|
|
}
|