blob: 237b48170fa1cd6947fc0b20f5dd42ec363aaaba [file] [log] [blame]
/*
* include/platform.h - Platform initialization and I/O.
*
* Copyright (C) 2021 ARM Limited. All rights reserved.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE.txt file.
*/
#ifndef __PLATFORM_H
#define __PLATFORM_H
void print_char(char c);
void print_string(const char *str);
void init_uart(void);
void init_platform(void);
#endif /* __PLATFORM_H */