Changeset d2bb9f8a in mainline
- Timestamp:
- 2005-08-31T21:56:52Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3e1607f
- Parents:
- 33ccb2c
- Files:
-
- 3 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia64/Makefile.inc
r33ccb2c rd2bb9f8a 15 15 LFLAGS=-EL -M -T ../arch/ia64/_link.ld 16 16 17 18 17 19 arch_sources= \ 18 20 arch/start.S \ … … 23 25 arch/fpu_context.c \ 24 26 arch/context.S \ 25 arch/ski/ski.c 27 arch/ski/ski.c \ 28 arch/cpu/cpu.c \ 29 arch/ivt.S \ 30 arch/interrupt_handler.c -
arch/ia64/src/dummy.s
r33ccb2c rd2bb9f8a 34 34 .global before_thread_runs_arch 35 35 .global arch_late_init 36 .global cpu_arch_init37 36 .global cpu_identify 38 37 .global cpu_print_report … … 50 49 asm_delay_loop: 51 50 arch_late_init: 52 cpu_arch_init:53 51 cpu_identify: 54 52 cpu_print_report: -
arch/mips/src/putchar.c
r33ccb2c rd2bb9f8a 35 35 void putchar(const char ch) 36 36 { 37 __u32 status = cp0_status_read();37 // __u32 status = cp0_status_read(); 38 38 39 cp0_status_write(cp0_status_read() | cp0_status_erl_error_bit);39 // cp0_status_write(cp0_status_read() | cp0_status_erl_error_bit); 40 40 *((char *) VIDEORAM) = ch; 41 cp0_status_write(status);41 // cp0_status_write(status); 42 42 } -
src/Makefile.config
r33ccb2c rd2bb9f8a 21 21 22 22 # Uncomment if you want to run in the test mode 23 #TEST=__TEST__23 TEST=__TEST__ 24 24 25 25 TEST_FILE=test.c -
src/main/main.c
r33ccb2c rd2bb9f8a 158 158 159 159 cpu_init(); 160 160 161 calibrate_delay_loop(); 161 162 -
src/proc/scheduler.c
r33ccb2c rd2bb9f8a 363 363 } 364 364 365 printf("Ahoj"); 365 366 THREAD = find_best_thread(); 367 // putchar('@'); 368 printf("Lidi"); 369 // printf("*1*"); 366 370 367 371 spinlock_lock(&THREAD->lock);
Note:
See TracChangeset
for help on using the changeset viewer.