Changeset 7df54df in mainline for arch/amd64/src/boot/boot.S
- Timestamp:
- 2005-09-02T14:00:48Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 32f6e1bd
- Parents:
- 73838ed
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/src/boot/boot.S
r73838ed r7df54df 34 34 35 35 #define START_STACK 0x7c00 36 #define START_STACK_64 $0xffffffff80007c0036 #define START_STACK_64 0xffffffff80007c00 37 37 38 38 # … … 52 52 movw %ax,%ds 53 53 movw %ax,%ss # initialize stack segment register 54 movl START_STACK,%esp # initialize stack pointer54 movl $(START_STACK),%esp # initialize stack pointer 55 55 56 #call memmap_arch_init56 call memmap_arch_init 57 57 58 58 movl $0x80000000, %eax … … 117 117 .code64 118 118 start64: 119 movq START_STACK_64, %rsp119 movq $(START_STACK_64), %rsp 120 120 121 121 call main_bsp # never returns
Note:
See TracChangeset
for help on using the changeset viewer.