Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/main/main.c

    rbae6169 r98000fb  
    101101context_t ctx;
    102102
     103/*
     104 * These 'hardcoded' variables will be intialized by
     105 * the linker or the low level assembler code with
     106 * appropriate sizes and addresses.
     107 */
     108
     109/** Virtual address of where the kernel is loaded. */
     110uintptr_t hardcoded_load_address = 0;
     111/** Size of the kernel code in bytes. */
     112size_t hardcoded_ktext_size = 0;
     113/** Size of the kernel data in bytes. */
     114size_t hardcoded_kdata_size = 0;
    103115/** Lowest safe stack virtual address. */
    104116uintptr_t stack_safe = 0;               
Note: See TracChangeset for help on using the changeset viewer.