1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-03 04:29:31 +00:00
C02/work/testhdr.h02

16 lines
208 B
Plaintext
Raw Normal View History

2018-01-28 19:47:06 +00:00
/* Generic 6502 header file */
2018-07-30 02:49:44 +00:00
const #TRUE = $FF, #FALSE = 0;
char anykey = "Press any key to continue...";
/* Get Character from Keyboard */
char getc();
void putc();
char puts();
2018-01-28 19:47:06 +00:00
char strlen();