Changeset 0b512a8 in mainline


Ignore:
Timestamp:
2005-09-06T23:23:37Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7248e31
Parents:
2bd4fdf
Message:

Small cleanups

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/boot/boot.S

    r2bd4fdf r0b512a8  
    245245        .word selector(GDT_ITEMS)
    246246        .long KA2PA(gdt)-BOOT_OFFSET
    247        
     247
  • arch/mips/src/asm.S

    r2bd4fdf r0b512a8  
    168168        .long utext_end-utext
    169169 
     170
  • arch/mips/src/start.S

    r2bd4fdf r0b512a8  
    229229
    230230userspace_asm:
    231         .word 0x29
    232231        add $sp, $a0, 0
    233232        eret
  • src/Makefile

    r2bd4fdf r0b512a8  
    8787        $(LD) -T ../arch/$(ARCH)/_link.ld $(LFLAGS) $(arch_objects) $(objects) $(test_objects) debug/real_map.o -o $@ -Map kernel.map
    8888
    89 %.s: %.S
    90         $(CC) $(CPPFLAGS) -E $< >$@
     89%.o: %.S
     90        $(CC) $(ASFLAGS) $(CFLAGS) -c $< -o $@
    9191
    9292%.o: %.s
Note: See TracChangeset for help on using the changeset viewer.