Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2237 → Rev 2238

/branches/arm/kernel/arch/arm32/src/mm/frame.c
1,5 → 1,5
/*
* Copyright (c) 2005 Jakub Jermar
* Copyright (c) 2007 Pavel Jancik, Michal Kebrt
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
39,15 → 39,14
/** Create memory zones. */
void frame_arch_init(void)
{
aux_printf("frame_arch_init ... begin\n");
// all memory as one zone
aux_printf("frame_arch_init ... begin\n");
// all memory as one zone
zone_create(0, ADDR2PFN(config.memory_size), 11, 0);
/*
* Blacklist interrupt vector + Kernels from boot loader page table
*/
frame_mark_unavailable(0, 10);
aux_printf("frame_arch_init ... end\n");
 
aux_printf("frame_arch_init ... end\n");
}
 
/** @}