Skip to content

Commit

Permalink
fix: allow up to 41 private LUT slots
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan-Arne Sobania committed May 14, 2012
1 parent 9d966fd commit 3f9e989
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scc_bios.S
Expand Up @@ -700,9 +700,9 @@ INT_15_e820: // function ax=0xe820: query memory map
movl %fs:(%eax), %eax /* GRB:0x8244: Private Memory Slots */
andb $0xFF, %al

cmpl $40, %eax /* Never use more than 40 slots */
cmpl $41, %eax /* Never use more than 41 slots */
jle 1f
movl $40, %eax
movl $41, %eax
1:
cmpl $4, %eax /* Never use less than 4 slots */
jge 2f
Expand Down

0 comments on commit 3f9e989

Please sign in to comment.