Browse Source

[romprefix] Fix PMM detection start address

Commit fd0aef9 introduced a typo that caused PMM detection to start at
paragraph 0xe00 rather than 0xe000.  (Detection would still work, since it
would scan until it ran out of base memory, but it would end up scanning
an unnecessarily large portion of base memory.)

Spotted by Sebastian Herbszt <herbszt@gmx.de>.
tags/v0.9.4
Michael Brown 16 years ago
parent
commit
27731d975e
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/arch/i386/prefix/romprefix.S

+ 1
- 1
src/arch/i386/prefix/romprefix.S View File

180
 	popl	%es:( 0x19 * 4 )
180
 	popl	%es:( 0x19 * 4 )
181
 hook_bbs:
181
 hook_bbs:
182
 	/* Check for PMM */
182
 	/* Check for PMM */
183
-	movw	$( 0xe00 - 1 ), %bx
183
+	movw	$( 0xe000 - 1 ), %bx
184
 pmm_scan:
184
 pmm_scan:
185
 	incw	%bx
185
 	incw	%bx
186
 	jz	no_pmm
186
 	jz	no_pmm

Loading…
Cancel
Save