Subversion Repositories HelenOS-historic

Rev

Rev 1221 | Rev 1730 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1221 Rev 1702
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
 /** @addtogroup ppc32mm   
-
 
30
 * @{
-
 
31
 */
-
 
32
/** @file
-
 
33
 */
-
 
34
 
29
#include <arch/boot/boot.h>
35
#include <arch/boot/boot.h>
30
#include <arch/mm/memory_init.h>
36
#include <arch/mm/memory_init.h>
31
#include <typedefs.h>
37
#include <typedefs.h>
32
#include <print.h>
38
#include <print.h>
33
 
39
 
Line 43... Line 49...
43
    count_t i;
49
    count_t i;
44
   
50
   
45
    for (i = 0; i < bootinfo.memmap.count; i++)
51
    for (i = 0; i < bootinfo.memmap.count; i++)
46
        printf("base: %#x size: %#x\n", bootinfo.memmap.zones[i].start, bootinfo.memmap.zones[i].size);
52
        printf("base: %#x size: %#x\n", bootinfo.memmap.zones[i].start, bootinfo.memmap.zones[i].size);
47
}
53
}
-
 
54
 
-
 
55
 /** @}
-
 
56
 */
-
 
57