diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2025-09-15 15:51:13 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2025-09-15 15:51:13 -0400 |
commit | 5d73ba1059771f3226c1f45d41a9e3f52d68ee3d (patch) | |
tree | d1a93562ddff3810162d5180c3fe3cda58e24dad /apps/init/arch/x86_64/start.c | |
parent | 76ee61642d9d5c7d2abb8b92adec7ec59bd8791a (diff) | |
download | jove-os-5d73ba1059771f3226c1f45d41a9e3f52d68ee3d.tar.gz jove-os-5d73ba1059771f3226c1f45d41a9e3f52d68ee3d.tar.bz2 jove-os-5d73ba1059771f3226c1f45d41a9e3f52d68ee3d.zip |
begin init staging refactormain
Diffstat (limited to 'apps/init/arch/x86_64/start.c')
-rw-r--r-- | apps/init/arch/x86_64/start.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/apps/init/arch/x86_64/start.c b/apps/init/arch/x86_64/start.c deleted file mode 100644 index 8329523..0000000 --- a/apps/init/arch/x86_64/start.c +++ /dev/null @@ -1,11 +0,0 @@ -extern void main(void*); - -__attribute__((section(".text.start"))) -__attribute__((naked)) -void -_start(void) -{ - __asm__ volatile("\ - popq %%rdi; \ - jmp main"::); -} |