1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2026-08-15 11:00:07 -04:00

Use lowercase hexadecimal digits

This commit is contained in:
Alex Kotov 2022-01-24 07:50:16 +05:00
parent 2c140b8dae
commit 8ad8c311ef
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08
10 changed files with 18 additions and 18 deletions

View file

@ -1,7 +1,7 @@
OUTPUT_ARCH("i386")
ENTRY(_start)
_kernel_offset = 0xC0000000; /* 3 GiB */
_kernel_offset = 0xc0000000; /* 3 GiB */
_kernel_phys_base = 4M;
_kernel_virt_base = (_kernel_phys_base + _kernel_offset);