Revert the length of uglobals buffer (fix r9968)

This is a magic number again, but it is reported to work.

git-svn-id: svn://kolibrios.org@9969 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
2024-01-16 05:39:27 +00:00
parent bd4ac33731
commit e1bea992de
2 changed files with 8 additions and 5 deletions

View File

@@ -115,9 +115,9 @@ B32:
cld
rep stosd
; Clear kernel undefined globals and slots
; Clear kernel undefined globals and some more (what exactly?)
mov edi, endofcode - OS_BASE
mov ecx, VGABasePtr - endofcode ; why uglobals_size isn't enough?
mov ecx, 0x90000 ; why uglobals_size isn't enough?
sub ecx, edi
shr ecx, 2
rep stosd