summaryrefslogtreecommitdiff
path: root/src/as/crti.s
diff options
context:
space:
mode:
authorAleksa Vučković <aleksav013@gmail.com>2022-01-21 21:44:28 +0100
committerAleksa Vučković <aleksav013@gmail.com>2022-01-21 23:24:55 +0100
commita914c37365967afaf3148293a857c36af6f94ecb (patch)
treeb7086b0b0b6e4bf427210fcfd31c7745920a73a5 /src/as/crti.s
parented84017353c6fc9421b223ff6ec62f8d881d8098 (diff)
Separating assembly, moving #defines to .h & cleaning Makefile
Diffstat (limited to 'src/as/crti.s')
-rw-r--r--src/as/crti.s16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/as/crti.s b/src/as/crti.s
deleted file mode 100644
index 5894e2d..0000000
--- a/src/as/crti.s
+++ /dev/null
@@ -1,16 +0,0 @@
-/* x86 crti.s */
-.section .init
-.global _init
-.type _init, @function
-_init:
- push %ebp
- movl %esp, %ebp
- /* gcc will nicely put the contents of crtbegin.o's .init section here. */
-
-.section .fini
-.global _fini
-.type _fini, @function
-_fini:
- push %ebp
- movl %esp, %ebp
- /* gcc will nicely put the contents of crtbegin.o's .fini section here. */