diff options
author | gikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-03-13 03:32:55 +0000 |
---|---|---|
committer | gikidy <gikidy@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-03-13 03:32:55 +0000 |
commit | d0b0659fbeb35d06fff22b2d226bc838d0e7d3bf (patch) | |
tree | 98350a7f21c4a9cf398b9bd156dedd0f7bc7fa2e /DuetPkg | |
parent | 7674c40a2d02512fa8b4b9cd55929846d02d8ace (diff) | |
download | edk2-platforms-d0b0659fbeb35d06fff22b2d226bc838d0e7d3bf.tar.xz |
cleanScreen verified.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7874 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'DuetPkg')
-rw-r--r-- | DuetPkg/BootSector/efi32.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/DuetPkg/BootSector/efi32.S b/DuetPkg/BootSector/efi32.S index 5afdb9c1f8..11e53b2488 100644 --- a/DuetPkg/BootSector/efi32.S +++ b/DuetPkg/BootSector/efi32.S @@ -501,7 +501,7 @@ ClearScreen: pushl %eax
pushl %ecx
- movb 0x00, %al
+ movb $0x00, %al
movb $0xc, %ah
movl $0xb8000, %edi
movl $80*24, %ecx
|