Changeset ef0aa999 in mainline
- Timestamp:
- 2005-12-20T23:18:23Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cf4a823
- Parents:
- e649dfa
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
init/init.c
re649dfa ref0aa999 33 33 { 34 34 puts("Hello world\n"); 35 while (1) ; 35 36 return 0; 36 37 } -
libc/_link.ld.in
re649dfa ref0aa999 4 4 5 5 SECTIONS { 6 .text 0x0000 0000 : {6 .text 0x00001000 : { 7 7 } 8 8 } -
libc/arch/ia32/src/entry.s
re649dfa ref0aa999 37 37 # 38 38 __entry: 39 mov %ss, %ax 40 mov %ax, %ds 41 mov %ax, %es 42 mov %ax, %fs 43 mov %ax, %gs 39 44 40 45 call main -
libc/arch/ia32/src/syscall.c
re649dfa ref0aa999 34 34 35 35 asm volatile ( 36 "int $0x 80\n"36 "int $0x30\n" 37 37 : "=a" (ret) 38 38 : "a" (id),
Note:
See TracChangeset
for help on using the changeset viewer.