1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-17 05:29:30 +00:00
C02/include/util.h02

19 lines
500 B
Plaintext
Raw Permalink Normal View History

2018-08-14 18:14:32 +00:00
/********************************
* util - C02 Utility Functions *
********************************/
2020-09-08 15:51:30 +00:00
/* Decode Token into Destination String *
2018-08-14 18:14:32 +00:00
* Args: &t - Address of Token List *
* Returns: Tokenized Value of String */
char tkndec();
2020-09-08 15:51:30 +00:00
/* Encode Token from Destination String *
2018-08-14 18:14:32 +00:00
* 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();