- Timestamp:
- 2005-08-30T19:44:27Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d0c30f7
- Parents:
- 8fc0d455
- Location:
- arch/mips
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips/Makefile.inc
r8fc0d455 r9c0a9b3 12 12 DEFS=-DARCH=$(ARCH) 13 13 CPPFLAGS=$(DEFS) -mno-abicalls -nostdinc -I../include 14 CFLAGS=$(CPPFLAGS) -mips2 -G 0 -nostdlib -fno-builtin -W missing-prototypes -Werror -O214 CFLAGS=$(CPPFLAGS) -mips2 -G 0 -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O2 15 15 LFLAGS=-mips2 -M -no-check-sections -T ../arch/mips/_link.ld 16 16 -
arch/mips/include/asm.h
r8fc0d455 r9c0a9b3 50 50 } 51 51 52 void asm_delay_loop(__u32 t); 53 54 52 55 #endif -
arch/mips/src/cpu/cpu.c
r8fc0d455 r9c0a9b3 35 35 36 36 #include <typedefs.h> 37 #include <print.h> 37 38 38 39 struct { -
arch/mips/src/exception.c
r8fc0d455 r9c0a9b3 28 28 29 29 #include <arch/exception.h> 30 #include <arch/interrupt.h> 30 31 #include <panic.h> 31 32 #include <arch/cp0.h> -
arch/mips/src/mm/page.c
r8fc0d455 r9c0a9b3 32 32 #include <mm/frame.h> 33 33 #include <mm/page.h> 34 #include <memstr.h> 34 35 35 36 pte_t *PTL0 = NULL; -
arch/mips/src/mm/tlb.c
r8fc0d455 r9c0a9b3 34 34 #include <arch.h> 35 35 36 void main_bsp(void); 37 38 39 40 36 41 int bootstrap = 1; 37 42
Note:
See TracChangeset
for help on using the changeset viewer.