mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +00:00
16 lines
231 B
Raku
16 lines
231 B
Raku
SECTIONS {
|
|
.text :
|
|
{
|
|
tmpdir/alignof.o (.text)
|
|
}
|
|
.data :
|
|
{
|
|
tmpdir/alignof.o (.data)
|
|
LONG (ALIGNOF(.text))
|
|
LONG (ALIGNOF(.data))
|
|
}
|
|
}
|
|
|
|
alignof_text = ALIGNOF(.text);
|
|
alignof_data = ALIGNOF(.data);
|