1/******************************************************************************
2 * Copyright (c) 2010, 2011 IBM Corporation
3 * All rights reserved.
4 * This program and the accompanying materials
5 * are made available under the terms of the BSD License
6 * which accompanies this distribution, and is available at
7 * http://www.opensource.org/licenses/bsd-license.php
8 *
9 * Contributors:
10 *     IBM Corporation - initial implementation
11 *****************************************************************************/
12
13/*
14 * Print version information - in SLOF
15 * This code is in a separate file so that it can be easily compiled during
16 * each new build (for refreshing the build date).
17 */
18
19#include "termctrl.h"
20#include <product.h>
21
22.global print_version
23print_version:
24	.ascii	TERM_CTRL_RESET
25	.ascii	TERM_CTRL_CRSOFF
26	.ascii	TERM_CTRL_BRIGHT
27	.ascii	PRODUCT_NAME
28	.ascii  " Starting\r\n"
29	.ascii  TERM_CTRL_RESET
30	.ascii  " Build Date = ", __DATE__, " ", __TIME__
31	.ascii	"\r\n"
32	.ascii  " FW Version = " , RELEASE
33	.ascii	"\r\n\0"
34	.align	2
35.global print_version_end
36print_version_end:
37