config/make.tmpl(%build_module): Support use of _rel libs in uselibs=
[AROS.git] / arch / i386-pc / kernel / reboot.s
blob487b67d8507d031ac2520bd54d9cfedfbdf049d1
1 # One more important place. We come here upon warm restart.
2 # Here we set the stack pointer to some safe place and use core_Kick
3 # to run kernel_cstart() routine with our old boot taglist.
5 .globl core_Reboot
6 .type core_Reboot, @function
7 core_Reboot:
8 cli
9 cld
10 movl $0x1000, %esp
11 movl BootMsg, %eax
12 pushl $kernel_cstart
13 pushl %eax
14 call core_Kick