mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-18 21:07:28 +00:00
16 lines
208 B
Plaintext
16 lines
208 B
Plaintext
/* Generic 6502 header file */
|
|
|
|
const #TRUE = $FF, #FALSE = 0;
|
|
|
|
char anykey = "Press any key to continue...";
|
|
|
|
|
|
/* Get Character from Keyboard */
|
|
char getc();
|
|
|
|
void putc();
|
|
|
|
char puts();
|
|
|
|
char strlen();
|