8ca8d7665d
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@784 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
9 lines
261 B
PHP
9 lines
261 B
PHP
/* Step 1: Test for cpu reset
|
|
* That is, did I just boot or is this a later boot since power on.
|
|
* The result of this test in %al
|
|
* %al == 1 -- We are rebooting
|
|
* %al == 0 -- This is the initial boot
|
|
*
|
|
*/
|
|
testb %al, %al
|
|
jnz __cpu_reset
|