summaryrefslogtreecommitdiff
path: root/include/sed156x.h (plain)
blob: 4e24e01d4b974ff7a5c301462dd6efd2153e78d5
1/*
2 * (C) Copyright 2004
3 *
4 * Pantelis Antoniou <panto@intracom.gr>
5 * Intracom S.A.
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9
10/* Video support for Epson SED156x chipset(s) */
11
12#ifndef SED156X_H
13#define SED156X_H
14
15void sed156x_init(void);
16void sed156x_clear(void);
17void sed156x_output_at(int x, int y, const char *str, int size);
18void sed156x_reverse_at(int x, int y, int size);
19void sed156x_sync(void);
20void sed156x_scroll(int dx, int dy);
21
22/* export display */
23extern const int sed156x_text_width;
24extern const int sed156x_text_height;
25
26#endif /* SED156X_H */
27