mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 19:48:31 +02:00
15 lines
228 B
PHP
15 lines
228 B
PHP
{$asmmode gas}
|
|
|
|
procedure OpenBSDIdentTag;nostackframe;assembler;
|
|
asm
|
|
.section ".note.openbsd.ident", "a"
|
|
.p2align 2
|
|
.long 8
|
|
.long 4
|
|
.long 1
|
|
.asciz "OpenBSD"
|
|
.long 0
|
|
|
|
.text
|
|
end;
|