summaryrefslogtreecommitdiff
path: root/arch/i386/crti.s
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.xyz>2021-01-17 20:16:00 -0600
committerDanny Holman <dholman@gymli.xyz>2021-01-17 20:16:00 -0600
commit5064ec05b2af9e17aa1753575bef457a284ad61d (patch)
treeac65aaba0d21ce59e848eebc7befa3b72a7a92a0 /arch/i386/crti.s
parent50bc91ab29672a2a99cd97c0d560d1ccc69f1cf6 (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/crti.s')
-rw-r--r--arch/i386/crti.s15
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/i386/crti.s b/arch/i386/crti.s
new file mode 100644
index 0000000..4e1e4cb
--- /dev/null
+++ b/arch/i386/crti.s
@@ -0,0 +1,15 @@
+.section .init
+.global _init
+.type _init, @function
+
+_init:
+ pushl %ebp
+ movl %esp, %ebp
+
+.section .fini
+.global _fini
+.type _fini, @function
+
+_fini:
+ pushl %ebp
+ movl %esp, %ebp