mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-22 01:31:33 +00:00
24 lines
639 B
Plaintext
24 lines
639 B
Plaintext
/******************************************
|
|
* stdiox - Extended I/O Routines for C02 *
|
|
******************************************/
|
|
|
|
/* Print Byte as Decimal Number *
|
|
* 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();
|