mirror of
https://github.com/google/pebble.git
synced 2025-03-23 04:02:19 +00:00
35 lines
1.7 KiB
C
35 lines
1.7 KiB
C
/*
|
|
* Copyright 2024 Google LLC
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <stdint.h>
|
|
|
|
// Truncated version of the real thing.
|
|
static const uint8_t s_boot_fpga[] = {
|
|
0xff,0x00,0x4c,0x61,0x74,0x74,0x69,0x63,0x65,0x00,0x69,0x43,0x45,0x63,0x75,0x62,
|
|
0x65,0x32,0x20,0x32,0x30,0x31,0x35,0x2e,0x30,0x34,0x2e,0x32,0x37,0x34,0x30,0x39,
|
|
0x00,0x50,0x61,0x72,0x74,0x3a,0x20,0x69,0x43,0x45,0x34,0x30,0x55,0x4c,0x31,0x4b,
|
|
0x2d,0x43,0x4d,0x33,0x36,0x41,0x00,0x44,0x61,0x74,0x65,0x3a,0x20,0x4e,0x6f,0x76,
|
|
0x20,0x35,0x20,0x32,0x30,0x31,0x35,0x20,0x31,0x37,0x3a,0x33,0x30,0x3a,0x00,0xff,
|
|
0x33,0x36,0x00,0x7e,0xaa,0x99,0x7e,0x51,0x00,0x01,0x05,0x92,0x00,0x20,0x62,0x01,
|
|
0x6f,0x82,0x00,0x00,0x72,0x00,0x70,0x11,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x02,
|
|
0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,
|
|
0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
|
0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
|
0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x00,
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
|
};
|