blob: 81a6f5c1e3ba30101b0920a3b047197a0d8660c2 [file] [log] [blame]
Roberto Vargase92111a2018-05-22 16:05:42 +01001/*
2 * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef ROMLIB_H_
8
9#define ROMLIB_MAJOR 0
10#define ROMLIB_MINOR 1
11#define ROMLIB_VERSION ((ROMLIB_MAJOR << 8) | ROMLIB_MINOR)
12
13int rom_lib_init(int version);
14
15#endif