diff options
| author | Alexey Gavrilov <alexey.gavrilov@mail.com> | 2026-03-28 15:11:43 +0700 |
|---|---|---|
| committer | Alexey Gavrilov <alexey.gavrilov@mail.com> | 2026-03-28 15:29:22 +0700 |
| commit | 256b2c871a0f3ac0175de298b78c6ea527f42f60 (patch) | |
| tree | 08b99f57d9a108e0c7293555913fd83c704d929b /libgcc/x86 | |
| parent | 378972285342f52bb71822d87ba261b76b4a42ed (diff) | |
Set architecture bitness in nasm files
Signed-off-by: Alexey Gavrilov <alexey.gavrilov@mail.com>
Diffstat (limited to 'libgcc/x86')
| -rw-r--r-- | libgcc/x86/crti.nasm | 1 | ||||
| -rw-r--r-- | libgcc/x86/crtn.nasm | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/libgcc/x86/crti.nasm b/libgcc/x86/crti.nasm index 57cb8c1..745a0c3 100644 --- a/libgcc/x86/crti.nasm +++ b/libgcc/x86/crti.nasm @@ -1,3 +1,4 @@ +BITS 32 section .init global _init:function _init: diff --git a/libgcc/x86/crtn.nasm b/libgcc/x86/crtn.nasm index 537fa65..8fc8f32 100644 --- a/libgcc/x86/crtn.nasm +++ b/libgcc/x86/crtn.nasm @@ -1,3 +1,4 @@ +BITS 32 section .init pop ebp ret |
