Changeset 666f492 in mainline for kernel/arch
- Timestamp:
- 2010-05-24T18:42:44Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- da1bafb
- Parents:
- c555155
- Location:
- kernel/arch
- Files:
-
- 2 edited
-
mips32/src/panic.S (modified) (3 diffs)
-
ppc32/src/ppc32.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/src/panic.S
rc555155 r666f492 27 27 # 28 28 29 .text 29 .text 30 30 31 31 .set noat … … 34 34 35 35 #include <arch/asm/regname.h> 36 36 37 37 .global panic_printf 38 38 39 /* From printf return directly to halt() */ 39 /* From printf return directly to halt() */ 40 40 panic_printf: 41 41 jal printf … … 43 43 j halt 44 44 nop 45 /* This code does not work, god knows why */ 46 /* lui $ra, %hi(halt) 45 46 /* This code does not work, god knows why 47 lui $ra, %hi(halt) 47 48 j printf 48 49 ori $ra, %lo(halt) */ -
kernel/arch/ppc32/src/ppc32.c
rc555155 r666f492 201 201 pic_init(assigned_address[0].addr, PAGE_SIZE, &pic_cir, 202 202 &pic_cir_arg); 203 203 204 204 #ifdef CONFIG_MAC_KBD 205 205 uintptr_t pa = assigned_address[0].addr + 0x16000; … … 223 223 } 224 224 } 225 225 226 226 /* 227 227 * This is the necessary evil until the userspace driver is entirely … … 284 284 { 285 285 // TODO 286 while ( 1);286 while (true); 287 287 } 288 288
Note:
See TracChangeset
for help on using the changeset viewer.
