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 | include: create basic C library functions (diff) | |
download | box-5064ec05b2af9e17aa1753575bef457a284ad61d.tar.gz box-5064ec05b2af9e17aa1753575bef457a284ad61d.tar.zst box-5064ec05b2af9e17aa1753575bef457a284ad61d.zip |
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 '')
-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 |