From 5064ec05b2af9e17aa1753575bef457a284ad61d Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Sun, 17 Jan 2021 20:16:00 -0600 Subject: 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 --- arch/i386/crtn.s | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 arch/i386/crtn.s (limited to 'arch/i386/crtn.s') 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 -- cgit v1.2.3