mpspec.h: Tweak the write_smp_table macro so that it is safe if passed a complex...
[coreboot.git] / src / arch / i386 / lib / id.inc
1         .section ".id", "a", @progbits
2
3         .globl __id_start
4 __id_start:
5 vendor: 
6         .asciz MAINBOARD_VENDOR
7 part:           
8         .asciz MAINBOARD_PART_NUMBER
9 .long __id_end + 0x10 - vendor  /* Reverse offset to the vendor id */
10 .long __id_end + 0x10 - part    /* Reverse offset to the part number */
11 .long PAYLOAD_SIZE + ROM_IMAGE_SIZE  /* Size of this romimage */
12         .globl __id_end
13
14 __id_end:
15 .previous