diff options
author | Danny Holman <dholman@gymli.xyz> | 2021-01-17 20:16:00 -0600 |
---|---|---|
committer | Danny Holman <dholman@gymli.xyz> | 2021-01-17 20:16:00 -0600 |
commit | 5064ec05b2af9e17aa1753575bef457a284ad61d (patch) | |
tree | ac65aaba0d21ce59e848eebc7befa3b72a7a92a0 /arch/i386/crtn.s | |
parent | 50bc91ab29672a2a99cd97c0d560d1ccc69f1cf6 (diff) |
arch: i386: add support for x86 processors
Add support for 32-bit x86 processors, i.e. the 80386 and above.
Signed-off-by: Danny Holman <dholman@gymli.xyz>
Diffstat (limited to 'arch/i386/crtn.s')
-rw-r--r-- | arch/i386/crtn.s | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/i386/crtn.s b/arch/i386/crtn.s new file mode 100644 index 0000000..447afb1 --- /dev/null +++ b/arch/i386/crtn.s @@ -0,0 +1,7 @@ +.section .init + popl %ebp + ret + +.section .fini + popl %ebp + ret |