| 92 | uint8_t tag[]; |
| 93 | |
| 94 | mb2tag* next(){ |
| 95 | return reinterpret_cast<mb2tag*>(((uintptr_t)this) + ((size + MULTIBOOT2_TAG_ALIGN - 1) & ~(MULTIBOOT2_TAG_ALIGN - 1))); // Get next tag making sure to round up to alignment |
| 96 | } |
| 97 | } __attribute__((packed)) multiboot2_tag_t; |
| 98 | |
| 99 | typedef union { |