mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-20 03:33:14 +00:00
19 lines
506 B
Plaintext
19 lines
506 B
Plaintext
/********************************
|
|
* util - C02 Utility Functions *
|
|
********************************/
|
|
|
|
/* Decode Tokeniz into Destination String *
|
|
* Args: &t - Address of Token List *
|
|
* Returns: Tokenized Value of String */
|
|
char tkndec();
|
|
|
|
/* Encode Tokenized from Destination String *
|
|
* Args: &t - Address of Token List *
|
|
* Returns: Tokenized Value of String */
|
|
char tknenc();
|
|
|
|
/* Swap Nybbles in Byte *
|
|
* Args: b - Byte to Swap *
|
|
* Returns: Swapped Byte */
|
|
char swap();
|