/usr/share/z88dk/include/ts2068.h is in z88dk-data 1.8.ds1-10.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #ifndef __TS2068_H__
#define __TS2068_H__
#include <sys/types.h>
#include <spectrum.h> // for now anyway
///////////////////
// SET VIDEO MODE
///////////////////
#define VMOD_SPEC 0 // 256x192 pix, 32x24 attr
#define VMOD_HICLR 2 // 256x192 pix, 32x192 attr
#define VMOD_HIRES 6 // 512x192 pix
#define VMOD_DFILE0 0
#define VMOD_DFILE1 1
extern void __LIB__ __FASTCALL__ ts_vmod(uchar mode);
#endif
|