Corrections to SVN properties.
[AROS.git] / arch / i386-pc / kernel / reboot.s
blob6b86743fc323c6d8731978b716be7073a77c3a11
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