commit | 644e6fb4eb8be90ea04ba34b643a8bf019d680e0 | [log] [tgz] |
---|---|---|
author | mushtaq khan <mushtaq_k@procsys.com> | Mon Apr 30 15:57:22 2007 +0530 |
committer | Wolfgang Denk <wd@denx.de> | Tue May 15 23:15:10 2007 +0200 |
tree | fe45b4507772ce3b36537ef66c730d04367d6ddd | |
parent | c3243cf7b490057277d61acffe4ad0946f9eb4a4 [diff] |
Fixes bug clearing the bss section for i386 Hi, There is a bug in the code of clearing the bss section for processor i386.(File: cpu/i386/start.S) In the code, bss_start addr (starting addr of bss section) is put into the register %eax, but the code which clears the bss section refers to the addr pointed by %edi. This patch fixes this bug by putting bss_start into %edi register. Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>