2018-02-02 23:02:06 +00:00
|
|
|
/******************************************
|
|
|
|
* stdiox - Extended I/O Routines for C02 *
|
|
|
|
******************************************/
|
|
|
|
|
|
|
|
/* Print Byte as Decimal Number *
|
|
|
|
* Args: b - Number to print */
|
|
|
|
void putdec();
|
|
|
|
|
2018-02-03 17:43:05 +00:00
|
|
|
/* 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();
|
|
|
|
|
2018-02-02 23:02:06 +00:00
|
|
|
/* Print Formatted Byte to Screen *
|
|
|
|
* Args: b - byte to format *
|
|
|
|
* &s - formatting string */
|
|
|
|
void printf();
|