1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
/* CONIO.H style Text mode support for the Mega65 libC
Copyright (c) 2020-2021 HernĂ¡n Di Pietro
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Version 0.10
Date 2021-06-21
CHANGELOG
v0.4 Added getscreensize, setscreensize, setextendattribute,
set16bitcharmode, moveup,moveleft,moveright, movedown, gohome,
flushkeybuf.
Cache screen sizes for faster calls.
Added cprintf escape codes for formatted screen colors and attributes.
Added proper initialisation function.
Fixed a bug where screen was fixed at $8000!
v0.5 Added fillrect, box, cgets, wherex, wherey, togglecase functions.
Fixed moveXXXX to do multiple steps. Minor optimizations in cputs/cputc.
v0.6 Added vline, hline to draw lines. cputnc,cputncxy for repeating characters.
v0.6.5 Added LaTEX style comments for doc generation.
v0.7 Added cinput function. Fixed cputncxy color fill. BOX_STYLE_NONE added.
v0.8 Fixed documentation. COLOR_RAM_BASE is 0xFF80000UL to access full 32/64KB space.
Added setcolramoffset, getcolramoffset, setcharsetaddr, getcharsetaddr.
v0.8.1 Fixed Latex documentation.
v0.9 Added sethotregs.
v0.9.1 Fixed cinput buffer overrun bug and documentation.
v0.9.2 Fixed CC65 2.19 mismatched header types.
v0.10 Added setpalbank, getpalbank, setpalbanka, getpalbanka, setmapedpal, getmapedpal, setpalentry.
*/
/*------------------------------------------------------------------------
Color and attributes
-----------------------------------------------------------------------*/
/*------------------------------------------------------------------------
Keyboard ASCII codes
-----------------------------------------------------------------------*/
/*------------------------------------------------------------------------
Keyboard modifiers
-----------------------------------------------------------------------*/
/*------------------------------------------------------------------------
Box styles
-----------------------------------------------------------------------*/
/*------------------------------------------------------------------------
Line styles
-----------------------------------------------------------------------*/
/*------------------------------------------------------------------------
Input character modes
-----------------------------------------------------------------------*/
/*------------------------------------------------------------------------
Public structs
-----------------------------------------------------------------------*/
typedef struct tagRECT RECT;
/*------------------------------------------------------------------------
Screen configuration and setup
-----------------------------------------------------------------------*/
/** \m65libsummary{conionit}{Initialises the library internal state}
\m65libsyntax {void conioinit(void)}
\m65libremarks{This must be called before using any conio library function.}
*/
void ;
void ;
void ;
/** \m65libsummary{setscreenaddr}{Sets the screen RAM start address}
\m65libsyntax {void setscreenaddr(long addr);}
\m65libparam {addr}{The address to set as start of screen RAM}
\m65example {
// Set beginning of screen RAM at $48000
setscreenaddr(0x48000UL);
}
\m65libremarks{No bounds check is performed on the selected address}
*/
void ;
/** \m65libsummary{getscreenaddr}{Returns the screen RAM start address}
\m65libsyntax {long getscreenaddr(void);}
\m65libretval {The current screen RAM address start address.}
*/
long ;
/** \m65libsummary{setcolramoffset}{Sets the color RAM start offset value}
\m65libsyntax {void setcolramoffset(long offset);}
\m65libparam {addr}{The offset from the beginning of the color RAM address ($FF80000)}
\m65libremarks{No bounds check is performed on the resulting address. Do not exceed the available Color RAM size}
*/
void ;
/** \m65libsummary{getcolramoffset}{Returns the color RAM start offset value}
\m65libsyntax {long getscreenaddr(void);}
\m65libretval {The current color RAM start offset value.}
*/
unsigned int ;
/** \m65libsummary{setcharsetaddr}{Sets the character set start address}
\m65libsyntax {void setcharsetaddr(long addr);}
\m65libparam {addr}{The address to set as start of character set}
\m65libremarks {No bounds check is performed on the selected address}
*/
void ;
/** \m65libsummary{getcharsetaddr}{Returns the current character set start address}
\m65libsyntax {long getscreenaddr(void);}
\m65libretval {The current character set start address.}
*/
long ;
/**
\m65libsummary{clrscr}{Clear the text screen. }
\m65libsyntax {void clrscr(void)}
\m65example {
// Clear screen to white
textcolor(COLOUR_WHITE);
clrscr();
}
\m65libremarks{Color RAM will be cleared with current text color}
*/
void ;
/** \m65libsummary{getscreensize}{Returns the dimensions of the text screen}
\m65libsyntax {void getscreensize(unsigned char* width, unsigned char* height)}
\m65libparam {width}{Pointer to location where width will be returned}
\m65libparam {height}{Pointer to location where height will be returned}
*/
void ;
/** \m65libsummary{setscreensize}{Sets the dimensions of the text screen}
\m65libsyntax {void setscreensize(unsigned char width, unsigned char height)}
\m65libparam {width}{The width in columns (40 or 80)}
\m65libparam {height}{The height in rows (25 or 50)}
\m65libremarks {Currently only 40/80 and 25/50 are accepted. Other values are ignored.}
*/
void ;
/** \m65libsummary{set16bitcharmode}{Sets or clear the 16-bit character mode}
\m65libsyntax {void set16bitcharmode(unsigned char f)}
\m65libparam {f}{Set true to set the 16-bit character mode}
\m65libremarks {This will trigger a video parameter reset if HOTREG is ENABLED. See sethotregs function.}
*/
void ;
/** \m65libsummary{sethotregs}{Sets or clear the hot-register behavior of the VIC-IV chip.}
\m65libsyntax {void set16bitcharmode(unsigned char f)}
\m65libparam {f}{Set true to enable the hotreg behavior}
\m65libremarks {When this mode is ENABLED a video mode reset will be triggered when touching $D011, $D016, $D018, $D031
or the VIC-II bank bits of $DD00. }
*/
void ;
/** \m65libsummary{setextendedattrib}{Sets or clear the VIC-III extended attributes mode to support blink, underline, bold
and highlight.} \m65libsyntax {void setextendedattrib(unsigned char f)} \m65libparam {f}{Set true to set the
extended attributes mode}
*/
void ;
/** \m65libsummary{togglecase}{Set lower case character set}
\m65libsyntax {void setlowercase(void)}
*/
void ;
/** \m65libsummary{togglecase}{Set upper case character set}
\m65libsyntax {void setuppercase(void)}
*/
void ;
/** \m65libsummary{togglecase}{Toggle the current character set case}
\m65libsyntax {void togglecase(void)}
*/
void ;
/*------------------------------------------------------------------------
Color and Attributes
-----------------------------------------------------------------------*/
/** \m65libsummary{bordercolor}{Sets the current border color}
\m65libsyntax {void bordercolor(unsigned char c)}
\m65libparam {c}{The color to set}
*/
void ;
/** \m65libsummary{bgcolor}{Sets the current screen (background) color}
\m65libsyntax {void bgcolor(unsigned char c)}
\m65libparam {c}{The color to set}
*/
void ;
/** \m65libsummary{textcolor}{Sets the current text color}
\m65libsyntax {void textcolor(unsigned char c)}
\m65libparam {c}{The color to set}
\m65libremarks {This function preserves attributes in the upper 4-bits if extended attributes are enabled. See
setextendedattrib. }
*/
void ;
/** \m65libsummary{revers}{Enable the reverse attribute}
\m65libsyntax {void revers(unsigned char c)}
\m65libparam {enable}{0 to disable, 1 to enable}
\m65libremarks {Extended attributes mode must be active. See setextendedattrib.}
*/
void ;
/** \m65libsummary{highlight}{Enable the highlight attribute}
\m65libsyntax {void highlight(unsigned char c)}
\m65libparam {enable}{0 to disable, 1 to enable}
\m65libremarks {Extended attributes mode must be active. See setextendedattrib.}
*/
void ;
/** \m65libsummary{blink}{Enable the blink attribute}
\m65libsyntax {void blink(unsigned char c)}
\m65libparam {enable}{0 to disable, 1 to enable}
\m65libremarks {Extended attributes mode must be active. See setextendedattrib.}
*/
void ;
/** \m65libsummary{underline}{Enable the underline attribute}
\m65libsyntax {void underline(unsigned char c)}
\m65libparam {enable}{0 to disable, 1 to enable}
\m65libremarks {Extended attributes mode must be active. See setextendedattrib.}
*/
void ;
/** \m65libsummary{altpal}{Enable the alternate-palette attribute}
\m65libsyntax {void altpal(unsigned char c)}
\m65libparam {enable}{0 to disable, 1 to enable}
\m65libremarks {Extended attributes mode must be active. See setextendedattrib.}
*/
void ;
/** \m65libsummary{clearattr}{Clear all text attributes}
\m65libsyntax {void clearattr())}
\m65libremarks {Extended attributes mode must be active. See setextendedattrib.}
*/
void ;
/** \m65libsummary{cellcolor}{Sets the color of a character cell}
\m65libsyntax {void cellcolor(unsigned char x, unsigned char y, unsigned char c)}
\m65libparam {x}{The cell X-coordinate}
\m65libparam {y}{The cell Y-coordinate}
\m65libparam {c}{The color to set}
\m65libremarks {No screen bounds checks are performed; out of screen behavior is undefined }
*/
void ;
/*------------------------------------------------------------------------
Palette management
-----------------------------------------------------------------------*/
/** \m65libsummary{setpalbank}{Set current text/bitmap palette bank (BTPALSEL).}
\m65libsyntax {void setpalbank(unsigned char bank)}
\m65libparam {bank}{The palette bank to set. Valid values are 0, 1, 2 or 3.}
\m65libremarks {Use setpalbanka to set alternate text/bitmap palette}
*/
void ;
/** \m65libsummary{setpalbanka}{Set alternate text/bitmap palette bank.}
\m65libsyntax {void setpalbanka(unsigned char bank)}
\m65libparam {bank}{The palette bank to set. Valid values are 0, 1, 2 or 3.}
\m65libremarks {Use setpalbank to set main text/bitmap palette}
*/
void ;
/** \m65libsummary{getpalbank}{Get selected text/bitmap palette bank.}
\m65libsyntax {unsigned char getpalbank(void)}
\m65libremarks {Use getpalbanka to get alternate text/bitmap selected palette}
\m65libretval {The current selected main text/bitmap palette bank.}
*/
unsigned char ;
/** \m65libsummary{getpalbanka}{Get selected alternate text/bitmap palette bank.}
\m65libsyntax {unsigned char getpalbanka(void)}
\m65libremarks {Use getpalbank to get main text/bitmap selected palette}
\m65libretval {The current selected alternate text/bitmap palette bank.}
*/
unsigned char ;
/** \m65libsummary{setmapedpal}{Set maped-in palette bank at $D100-$D3FF.}
\m65libsyntax {void setmapedpal(unsigned char bank)}
\m65libparam {bank}{The palette bank to map-in. Valid values are 0, 1, 2 or 3.}
*/
void ;
/** \m65libsummary{getmapedpal}{Get maped-in palette bank at $D100-$D3FF.}
\m65libsyntax {unsigned char getmapedpal(void)}
*/
unsigned char ;
/** \m65libsummary{setpalentry}{Set color entry for the maped-in palette}
\m65libsyntax {void setpalentry(unsigned char c, unsigned char r, unsigned char g, unsigned char b)}
\m65libparam {c}{The palette entry index (0-255)}
\m65libparam {r}{The red component value}
\m65libparam {g}{The green component value}
\m65libparam {b}{The blue component value}
\m65libremarks {Use setmapedmal to bank-in the palette to modify}
*/
void ;
/*------------------------------------------------------------------------
Screen draw operations
-----------------------------------------------------------------------*/
/** \m65libsummary{fillrect}{Fill a rectangular area with character and color value}
\m65libsyntax {void fillrect(const RECT *rc, unsigned char ch, unsigned char col)}
\m65libparam {rc}{A RECT structure specifying the box coordinates}
\m65libparam {ch}{A char code to fill the rectangle}
\m65libparam {col}{The color to fill}
\m65libremarks {No screen bounds checks are performed; out of screen behavior is undefined }
*/
void ;
/** \m65libsummary{box}{Draws a box with graphic characters}
\m65libsyntax {void box(const RECT *rc, unsigned char color, unsigned char style, unsigned char clear, unsigned char
shadow)} \m65libparam {rc}{A RECT structure specifying the box coordinates} \m65libparam {color}{The color to use
for the graphic characters} \m65libparam {style}{The style for the box borders. Can be set to BOX_STYLE_NONE,
BOX_STYLE_ROUNDED, BOX_STYLE_INNER, BOX_STYLE_OUTER, BOX_STYLE_MID } \m65libparam {clear}{Set to 1 to clear the box
interior with the selected color} \m65libparam {shadow}{Set to 1 to draw a drop shadow} \m65libremarks {No screen
bounds checks are performed; out of screen behavior is undefined }
*/
void ;
/** \m65libsummary{hline}{Draws an horizontal line.}
\m65libsyntax {void hline(unsigned char x, unsigned char y, unsigned char len, unsigned char style)}
\m65libparam {x}{The line start X-coordinate}
\m65libparam {y}{The line start Y-coordinate}
\m65libparam {len}{The line length}
\m65libparam {style}{The style for the line. See HLINE_ constants for available styles. }
\m65libremarks {No screen bounds checks are performed; out of screen behavior is undefined }
*/
void ;
/** \m65libsummary{vline}{Draws a vertical line.}
\m65libsyntax {void vline(unsigned char x, unsigned char y, unsigned char len, unsigned char style)}
\m65libparam {x}{The line start X-coordinate}
\m65libparam {y}{The line start Y-coordinate}
\m65libparam {len}{The line length}
\m65libparam {style}{The style for the line. See VLINE_ constants for available styles. }
\m65libremarks {No screen bounds checks are performed; out of screen behavior is undefined }
*/
void ;
/*------------------------------------------------------------------------
Cursor Movement
-----------------------------------------------------------------------*/
/** \m65libsummary{gohome}{Set the current position at home (0,0 coordinate)}
\m65libsyntax {void gohome(void)}
*/
void ;
/** \m65libsummary{gotoxy}{Set the current position at X,Y coordinates}
\m65libsyntax {void gotoxy(unsigned char x, unsigned char y)}
\m65libparam {x}{The new X-coordinate}
\m65libparam {y}{The new Y-coordinate}
\m65libremarks {No screen bounds checks are performed; out of screen behavior is undefined }
*/
void ;
/** \m65libsummary{gotox}{Set the current position X-coordinate}
\m65libsyntax {void gotox(unsigned char x)}
\m65libparam {x}{The new X-coordinate}
\m65libremarks {No screen bounds checks are performed; out of screen behavior is undefined }
*/
void ;
/** \m65libsummary{gotoy}{Set the current position Y-coordinate}
\m65libsyntax {void gotoy(unsigned char y)}
\m65libparam {y}{The new Y-coordinate}
\m65libremarks {No screen bounds checks are performed; out of screen behavior is undefined }
*/
void ;
/** \m65libsummary{moveup}{Move current position up}
\m65libsyntax {void moveup(unsigned char count)}
\m65libparam {count}{The number of positions to move}
\m65libremarks {No screen bounds checks are performed; out of screen behavior is undefined }
*/
void ;
/** \m65libsummary{movedown}{Move current position down}
\m65libsyntax {void movedown(unsigned char count)}
\m65libparam {count}{The number of positions to move}
\m65libremarks {No screen bounds checks are performed; out of screen behavior is undefined }
*/
void ;
/** \m65libsummary{moveleft}{Move current position left}
\m65libsyntax {void moveleft(unsigned char count)}
\m65libparam {count}{The number of positions to move}
\m65libremarks {No screen bounds checks are performed; out of screen behavior is undefined }
*/
void ;
/** \m65libsummary{moveright}{Move current position right}
\m65libsyntax {void moveright(unsigned char count)}
\m65libparam {count}{The number of positions to move}
\m65libremarks {No screen bounds checks are performed; out of screen behavior is undefined }
*/
void ;
/** \m65libsummary{wherex}{Return the current position X coordinate}
\m65libsyntax {unsigned char wherex(void)}
\m65libretval {The current position X coordinate}
*/
unsigned char ;
/** \m65libsummary{wherey}{Return the current position Y coordinate}
\m65libsyntax {unsigned char wherey(void)}
\m65libretval {The current position Y coordinate}
*/
unsigned char ;
/*------------------------------------------------------------------------
PETSCII conversion output
-----------------------------------------------------------------------*/
char ;
char* ;
/** \m65libsummary{pcputc}{Output a single petscii character to screen at current position}
\m65libsyntax {void cputc(unsigned char c)}
\m65libparam {c}{The petscii character to output}
*/
/** \m65libsummary{pcputsxy}{Output a petscii string at X,Y coordinates}
\m65libsyntax {void pcputsxy (unsigned char x, unsigned char y, const unsigned char* s)}
\m65libparam {x}{The X coordinate where string will be printed}
\m65libparam {y}{The Y coordinate where string will be printed}
\m65libparam {s}{The petscii string to print}
\m65libremarks {No pointer check is performed. If s is null or invalid, behavior is undefined }
*/
/** \m65libsummary{cputcxy}{Output a single petscii character at X,Y coordinates}
\m65libsyntax {void pcputcxy (unsigned char x, unsigned char y, unsigned char c)}
\m65libparam {x}{The X coordinate where character will be printed}
\m65libparam {y}{The Y coordinate where character will be printed}
\m65libparam {c}{The petscii character to print}
*/
/** \m65libsummary{pcputs}{Output a petscii string at current position}
\m65libsyntax {void pcputs(const unsigned char* s)}
\m65libparam {s}{The string to print}
\m65libremarks {No pointer check is performed. If s is null or invalid, behavior is undefined }
*/
/*------------------------------------------------------------------------
Text output
-----------------------------------------------------------------------*/
/** \m65libsummary{cputc}{Output a single screen code character to screen at current position}
\m65libsyntax {void cputc(unsigned char c)}
\m65libparam {c}{The screen code of the character to output}
*/
void ;
/** \m65libsummary{cputnc}{Output N copies of a character at current position}
\m65libsyntax {void cputnc(unsigned char count, unsigned char c)}
\m65libparam {c}{The screen code of the characters to output}
\m65libparam {count}{The count of characters to print}
*/
void ;
/** \m65libsummary{cputhex}{Output an hex-formatted number at current position}
\m65libsyntax {void cputhex(long n, unsigned char prec)}
\m65libparam {n}{The number to write}
\m65libparam {prec}{The precision of the hex number, in digits. Leading zeros will be printed accordingly}
\m65libremarks {The $ symbol will be automatically added at beginning of string}
*/
void ;
/** \m65libsummary{cputdec}{Output a decimal number at current position}
\m65libsyntax {void cputdec(long n, unsigned char padding, unsigned char leadingZ)}
\m65libparam {n}{The number to write}
\m65libparam {padding}{The padding space to add before number}
\m65libparam {leadingZ}{The leading zeros to print}
*/
void ;
/** \m65libsummary{cputs}{Output screen codes at current position}
\m65libsyntax {void cputs(const unsigned char* s)}
\m65libparam {s}{Am array of screen codes to print}
\m65libremarks {This function works with screen codes only. To output ordinary ASCII/PETSCII strings,
use the "pcputs" macro. No pointer check is performed. If s is null or invalid, behavior is undefined. }
*/
void ;
/** \m65libsummary{cputsxy}{Output multiple screen codes at X,Y coordinates}
\m65libsyntax {void cputsxy (unsigned char x, unsigned char y, const unsigned char* s)}
\m65libparam {x}{The X coordinate where string will be printed}
\m65libparam {y}{The Y coordinate where string will be printed}
\m65libparam {s}{An array of screen codes to print}
\m65libremarks {This function works with screen codes only. To output ordinary ASCII/PETSCII strings,
use the "pcputsxy" macro. No pointer check is performed. If s is null or invalid, behavior is undefined. }
*/
void ;
/** \m65libsummary{cputcxy}{Output a single character at X,Y coordinates}
\m65libsyntax {void cputcxy (unsigned char x, unsigned char y, unsigned char c)}
\m65libparam {x}{The X coordinate where character will be printed}
\m65libparam {y}{The Y coordinate where character will be printed}
\m65libparam {c}{The screen code of the character to print}
*/
void ;
/** \m65libsummary{cputncxy}{Output N copies of a single character at X,Y coordinates}
\m65libsyntax {void cputncxy (unsigned char x, unsigned char y, unsigned char count, unsigned char c)}
\m65libparam {x}{The X coordinate where character will be printed}
\m65libparam {y}{The Y coordinate where character will be printed}
\m65libparam {count}{The number of characters to output}
\m65libparam {c}{The screen code of the characters to print}
*/
void ;
// making raw _cprintf available here to be used by cprintf and pcprintf
// don't use this call directly as it might go away in a future release of the library
unsigned char ;
/** \m65libsummary{cprintf}{Prints formatted output. \\
Escape strings can be used to modify attributes, move cursor, etc similar to PRINT in CBM BASIC.
}
\m65libsyntax {unsigned char cprintf (const unsigned char* format, ...)}
\m65libparam {format}{The string to output. The available escape codes are: \\
%<
\textbf{Cursor positioning} \\
\begin{tabular}{ll}
\textbackslash t & Go to next tab position (multiple of 8s) \\
\textbackslash r & Carriage Return \\
\textbackslash n & New line \\
\end{tabular}
\begin{tabular}{llll}
\texttt{\{clr\}} & Clear screen & \texttt{\{home\}} & Move cursor to home (top-left) \\
\texttt{\{d\}} & Move cursor down & \texttt{\{u\}} & Move cursor up \\
\texttt{\{r\}} & Move cursor right & \texttt{\{l\}} & Move cursor left \\
\end{tabular}
\textbf{Attributes} \\
\begin{tabular}{llll}
\texttt{\{rvson\}} & Reverse attribute ON & \texttt{\{rvsoff\}} & Reverse attribute OFF \\
\texttt{\{blon\}} & Blink attribute ON & \texttt{\{bloff\}} & Blink attribute OFF \\
\texttt{\{ulon\}} & Underline attribute ON & \texttt{\{uloff\}} & Underline attribute OFF \\
\end{tabular}
\textbf{Colors (default palette)} \\
\begin{tabular}{llll}
\texttt{\{blk\}} & \texttt{\{wht\}} & \texttt{\{red\}} & \texttt{\{cyan\}} \\
\texttt{\{pur\}} & \texttt{\{grn\}} & \texttt{\{blu\}} & \texttt{\{yel\}} \\
\texttt{\{ora\}} & \texttt{\{brn\}} & \texttt{\{pink\}} & \texttt{\{gray1\}} \\
\texttt{\{gray2\}} & \texttt{\{lblu\}} & \texttt{\{lgrn\}} & \texttt{\{gray3\}}
\end{tabular}
%>}
\m65libremarks {This function works with screen codes only! To output ordinary ASCII/PETSCII strings,
use the "pcprintf" macro. Currently no argument replacement is done with the variable arguments.}
*/
/** \m65libsummary{pcprintf}{Prints formatted petscii string output.}
\m65libsyntax {see cprintf}
*/
/*------------------------------------------------------------------------
Keyboard input
-----------------------------------------------------------------------*/
/** \m65libsummary{cgetc}{ Waits until a character is in the keyboard buffer and returns it }
\m65libsyntax {unsigned char cgetc (void);}
\m65libretval {The last character in the keyboard buffer }
\m65libremarks {Returned values are ASCII character codes}
*/
unsigned char ;
/** \m65libsummary{kbhit}{ Returns the character in the keyboard buffer }
\m65libsyntax {unsigned char kbhit (void);}
\m65libretval {The character code in the keyboard buffer, 0 otherwise. }
\m65libremarks {Returned values are ASCII character codes}
*/
unsigned char ;
/** \m65libsummary{getkeymodstate}{
Return the key modifiers state.}
\m65libsyntax {unsigned char getkeymodstate(void)}
\m65libretval {A byte with the key modifier state bits,
where bits:
%<
\begin{tabular}{lll}
\textbf{Bit} & \textbf{Meaning} & \textbf{Constant} \\
0 & Right SHIFT State & \texttt{KEYMOD\_RSHIFT} \\
1 & Left SHIFT state & \texttt{KEYMOD\_LSHIFT} \\
2 & CTRL state & \texttt{KEYMOD\_CTRL} \\
3 & MEGA state & \texttt{KEYMOD\_MEGA} \\
4 & ALT state & \texttt{KEYMOD\_ALT} \\
5 & NOSCRL state & \texttt{KEYMOD\_NOSCRL} \\
6 & CAPSLOCK state & \texttt{KEYMOD\_CAPSLOCK} \\
7 & Reserved & - \\
\end{tabular}
%>}
*/
unsigned char ;
/** \m65libsummary{flushkeybuf}{Flush the keyboard buffer}
\m65libsyntax {void flushkeybuf(void)}
*/
void ;
/** \m65libsummary{cinput}{Get input from keyboard, printing incoming characters at current position.}
\m65libsyntax {unsigned char cinput(char* buffer, unsigned char buflen, unsigned char flags)}
\m65libparam {buffer}{Target character buffer preallocated by caller}
\m65libparam {buflen}{Target buffer length in characters, including the null character terminator}
\m65libparam {flags}{Flags for input: (default is accept all printable characters)
%<
\texttt{CINPUT\_ACCEPT\_NUMERIC} \\
Accepts numeric characters. \\ \\
\texttt{CINPUT\_ACCEPT\_LETTER} \\
Accepts letters. \\ \\
\texttt{CINPUT\_ACCEPT\_SYM} \\
Accepts symbols. \\ \\
\texttt{CINPUT\_ACCEPT\_ALL}\\
Accepts all. Equals to \texttt{CINPUT\_ACCEPT\_NUMERIC \textbar CINPUT\_ACCEPT\_LETTER \textbar
CINPUT\_ACCEPT\_SYM} \\ \\
\texttt{CINPUT\_ACCEPT\_ALPHA} \\
Accepts alphanumeric characters. Equals to \texttt{CINPUT\_ACCEPT\_NUMERIC \textbar CINPUT\_ACCEPT\_LETTER} \\ \\
\texttt{CINPUT\_NO\_AUTOTRANSLATE}\\
Disables the feature that makes cinput to autodisplay uppercase characters when standard lowercase character set
is selected and the user enters letters without the SHIFT key, that would display graphic characters instead of
alphabetic ones. \\
%>}
\m65libretval {Count of successfully read characters in buffer}
*/
unsigned char ;
// M65LIBC_CONIO_H