Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. ; PRINT AMOUNT OF MEMORY
  2.         mov     esi, boot_memdetect
  3.         call    boot_log
  4.  
  5.         movzx   ecx, word [boot_y]
  6.         or      ecx, (10+29*6) shl 16 ; "Determining amount of memory"
  7.         sub     ecx, 10
  8.         mov     edx, 0xFFFFFF
  9.         mov     ebx, [MEM_AMOUNT]
  10.         shr     ebx, 20
  11.         mov     edi, 1
  12.         mov     eax, 0x00040000
  13.         call    display_number_force
  14.