Xemu [doxygen]  hyppo 0a42be3a057156924bc1b626a687bd6e27349c45 @ Sat 19 Mar 02:15:11 CET 2022
nick.h
Go to the documentation of this file.
1 /* Minimalistic Enterprise-128 emulator with focus on "exotic" hardware
2  Part of the Xemu project, please visit: https://github.com/lgblgblgb/xemu
3  Copyright (C)2015-2016,2020 LGB (Gábor Lénárt) <lgblgblgb@gmail.com>
4 
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9 
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14 
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
18 
19 #ifndef XEMU_EP128_NICK_H_INCLUDED
20 #define XEMU_EP128_NICK_H_INCLUDED
21 
22 #include <SDL_types.h>
23 
24 #define NICK_SLOTS_PER_SEC 889846
25 
26 extern int vsync;
27 
28 extern int nick_init ( void );
29 extern Uint8 nick_get_last_byte ( void );
30 extern void nick_set_border ( Uint8 bcol );
31 extern void nick_set_bias ( Uint8 value );
32 extern void nick_set_lptl ( Uint8 value );
33 extern void nick_set_lpth ( Uint8 value );
34 extern void nick_set_frameskip ( int val );
35 extern char *nick_dump_lpt ( const char *newline_seq );
36 extern void nick_render_slot ( void );
37 extern void screenshot ( void );
38 
39 #endif
nick_set_lptl
void nick_set_lptl(Uint8 value)
Definition: nick.c:183
nick_get_last_byte
Uint8 nick_get_last_byte(void)
Definition: nick.c:157
screenshot
void screenshot(void)
Definition: nick.c:97
nick_init
int nick_init(void)
Definition: nick.c:115
Uint8
uint8_t Uint8
Definition: fat32.c:51
nick_dump_lpt
char * nick_dump_lpt(const char *newline_seq)
Definition: nick.c:507
nick_set_bias
void nick_set_bias(Uint8 value)
Definition: nick.c:171
nick_render_slot
void nick_render_slot(void)
Definition: nick.c:550
nick_set_border
void nick_set_border(Uint8 bcol)
Definition: nick.c:164
value
int value
Definition: dma65.c:90
nick_set_frameskip
void nick_set_frameskip(int val)
Definition: nick.c:481
vsync
int vsync
Definition: nick.c:49
nick_set_lpth
void nick_set_lpth(Uint8 value)
Definition: nick.c:190