Changeset 280a27e in mainline for arch/ppc32


Ignore:
Timestamp:
2006-04-16T13:16:44Z (20 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
50de918
Parents:
c624b96
Message:

Printf ported back from uspace to kernel.
Printf calls changed to match new conventions.

Location:
arch/ppc32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • arch/ppc32/Makefile.inc

    rc624b96 r280a27e  
    5656DEFS += -DCONFIG_PAGE_PT
    5757
     58## Compile with support for software integer division.
     59#
     60
     61CONFIG_SOFTINT = y
     62
    5863ARCH_SOURCES = \
    5964        arch/$(ARCH)/src/console.c \
  • arch/ppc32/src/mm/memory_init.c

    rc624b96 r280a27e  
    4444       
    4545        for (i = 0; i < bootinfo.memmap.count; i++)
    46                 printf("base: %L size: %L\n", bootinfo.memmap.zones[i].start, bootinfo.memmap.zones[i].size);
     46                printf("base: %#X size: %#X\n", bootinfo.memmap.zones[i].start, bootinfo.memmap.zones[i].size);
    4747}
Note: See TracChangeset for help on using the changeset viewer.