You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
594 B
26 lines
594 B
2 months ago
|
// All included firmware files are
|
||
|
// INTEL CORPORATION PROPRIETARY INFORMATION
|
||
|
// Copyright(c) 2019 Intel Corporation. All Rights Reserved
|
||
|
const int fw_@symbol@_version[4] = {@version_commas@};
|
||
|
#ifndef _MSC_VER
|
||
|
__asm__(
|
||
|
"#version @sha1@\n"
|
||
|
#ifdef __APPLE__
|
||
|
".const_data\n"
|
||
|
#define _ "_"
|
||
|
#else
|
||
|
".section .rodata\n"
|
||
|
#define _ ""
|
||
|
#endif
|
||
|
".global "_"fw_@symbol@_data\n"
|
||
|
_"fw_@symbol@_data:\n"
|
||
|
".incbin \"@binary_escaped@\"\n"
|
||
|
".global "_"fw_@symbol@_size\n"
|
||
|
_"fw_@symbol@_size:\n"
|
||
|
"1:\n"
|
||
|
".int 1b - "_"fw_@symbol@_data\n"
|
||
|
".previous"
|
||
|
);
|
||
|
#undef _
|
||
|
#endif
|