- Timestamp:
- 2016-04-05T19:04:11Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3a34852
- Parents:
- 3876300
- Location:
- kernel/arch
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/boot/multiboot2.S
r3876300 rcfb1217 49 49 50 50 /* Information request tag */ 51 .align 8 51 52 tag_info_req_start: 52 53 .word MULTIBOOT2_TAG_INFO_REQ … … 61 62 62 63 /* Address tag */ 64 .align 8 63 65 tag_address_start: 64 66 .word MULTIBOOT2_TAG_ADDRESS … … 72 74 73 75 /* Entry address tag */ 76 .align 8 74 77 tag_entry_address_start: 75 78 .word MULTIBOOT2_TAG_ENTRY_ADDRESS … … 80 83 81 84 /* Flags tag */ 85 .align 8 82 86 tag_flags_start: 83 87 .word MULTIBOOT2_TAG_FLAGS … … 89 93 #ifdef CONFIG_FB 90 94 /* Framebuffer tag */ 95 .align 8 91 96 tag_framebuffer_start: 92 97 .word MULTIBOOT2_TAG_FRAMEBUFFER … … 100 105 101 106 /* Module alignment tag */ 107 .align 8 102 108 tag_module_align_start: 103 109 .word MULTIBOOT2_TAG_MODULE_ALIGN … … 108 114 109 115 /* Tag terminator */ 116 .align 8 110 117 tag_terminator_start: 111 118 .word MULTIBOOT2_TAG_TERMINATOR -
kernel/arch/ia32/src/boot/multiboot2.S
r3876300 rcfb1217 47 47 48 48 /* Information request tag */ 49 .align 8 49 50 tag_info_req_start: 50 51 .word MULTIBOOT2_TAG_INFO_REQ … … 59 60 60 61 /* Address tag */ 62 .align 8 61 63 tag_address_start: 62 64 .word MULTIBOOT2_TAG_ADDRESS … … 70 72 71 73 /* Entry address tag */ 74 .align 8 72 75 tag_entry_address_start: 73 76 .word MULTIBOOT2_TAG_ENTRY_ADDRESS … … 78 81 79 82 /* Flags tag */ 83 .align 8 80 84 tag_flags_start: 81 85 .word MULTIBOOT2_TAG_FLAGS … … 87 91 #ifdef CONFIG_FB 88 92 /* Framebuffer tag */ 93 .align 8 89 94 tag_framebuffer_start: 90 95 .word MULTIBOOT2_TAG_FRAMEBUFFER … … 98 103 99 104 /* Module alignment tag */ 105 .align 8 100 106 tag_module_align_start: 101 107 .word MULTIBOOT2_TAG_MODULE_ALIGN … … 106 112 107 113 /* Tag terminator */ 114 .align 8 108 115 tag_terminator_start: 109 116 .word MULTIBOOT2_TAG_TERMINATOR
Note:
See TracChangeset
for help on using the changeset viewer.