1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-15 22:29:27 +00:00

Added new function definitions to stdiox.h02

This commit is contained in:
Curtis F Kaylor 2018-02-03 12:43:05 -05:00
parent 90134a4009
commit e68f702734

View File

@ -6,8 +6,18 @@
* Args: b - Number to print */
void putdec();
/* Print Byte as Left Justified Decimal *
* Args: b - Number to print */
void putdel();
/* Print Byte as Right Justified Decimal *
* Args: b - Number to print */
void putder();
/* Print a Space Character */
void putspc();
/* Print Formatted Byte to Screen *
* Args: b - byte to format *
* &s - formatting string */
void printf();