- Initial checkin of the freebios2 tree
[coreboot.git] / src / arch / i386 / lib / id.inc
1         .section ".id", "a", @progbits
2
3 #define __STR(X) #X
4 #define STR(X) __STR(X)
5
6         .globl __id_start
7 __id_start:
8 vendor: 
9         .asciz STR(MAINBOARD_VENDOR)
10 part:           
11         .asciz STR(MAINBOARD_PART_NUMBER)
12 .long __id_end + 0x10 - vendor  /* Reverse offset to the vendor id */
13 .long __id_end + 0x10 - part    /* Reverse offset to the part number */
14 .long PAYLOAD_SIZE + ROM_IMAGE_SIZE  /* Size of this romimage */
15         .globl __id_end
16
17 #undef __STR
18 #undef STR
19
20 __id_end:
21 .previous