mirror of
https://github.com/ivoszbg/uniLoader.git
synced 2026-01-20 08:00:08 +00:00
13 lines
307 B
C
13 lines
307 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2022, Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
|
|
*/
|
|
|
|
#ifndef DEBUG_H_ /* Include guard */
|
|
#define DEBUG_H_
|
|
|
|
extern void draw_text(volatile char *fb, char *text, int textX, int textY, int width, int stride);
|
|
long int debug_linecount = 0;
|
|
|
|
#endif
|