1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2026-04-21 17:16:28 +00:00

Fixed putint(), adde putinj(), updated fprint() in module stdiox

This commit is contained in:
Curtis F Kaylor
2020-09-30 12:28:00 -04:00
parent 3796ceffd7
commit 9486a8c242
12 changed files with 174 additions and 91 deletions
+8
View File
@@ -25,6 +25,10 @@ void putbin();
* Args: b - Number to print */
void putdec();
/* Print Byte Zero Filled Modulo 100 *
* Args: b - Number to print */
void putdeh();
/* Print Byte as Left Justified Decimal *
* Args: b - Number to print */
void putdel();
@@ -33,6 +37,10 @@ void putdel();
* Args: b - Number to print */
void putder();
/* Print Byte as Zero Filled Decimal Number *
* Args: b - Number to print */
void putdez();
/* Print Destination String */
void putdst();