mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-22 01:31:33 +00:00
72 lines
1.7 KiB
Plaintext
72 lines
1.7 KiB
Plaintext
/******************************************
|
|
* stdiox - Extended I/O Routines for C02 *
|
|
******************************************/
|
|
|
|
/* Display "Press any key to continue" *
|
|
* prompt and wait fo keypress *
|
|
* Returns: ASCII value of key pressed */
|
|
void anykey();
|
|
|
|
/* Display prompt and wait for keypress *
|
|
* Args: &s - string to display *
|
|
* Returns: ASCII value of key pressed */
|
|
void getcpr();
|
|
|
|
/* Print Formatted Byte to Screen *
|
|
* Args: b - byte to format *
|
|
* &s - formatting string */
|
|
void printf();
|
|
|
|
/* Print Byte as Binary Number *
|
|
* Args: b - Number to print */
|
|
void putbin();
|
|
|
|
/* 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 Destination String */
|
|
void putdst();
|
|
|
|
/* Print Extended Hexadecimal Number *
|
|
* Args: char n - High Byte *
|
|
* int w - Middle and Low Bytes */
|
|
void putexh();
|
|
|
|
/* Print Byte as Hexadecimal Number *
|
|
* Args: b - Number to print */
|
|
void puthex();
|
|
|
|
/* Print Word as Decimal Number *
|
|
* Args: int w - Number to print */
|
|
void putint();
|
|
|
|
void putwrd();
|
|
/* Print Byte as Masked Bits *
|
|
* Args: b - Byte to print *
|
|
* m - Bitmask */
|
|
void putmsk();
|
|
|
|
/* Print Nybble as Hexadecimal Number *
|
|
* Args: b - Number to print */
|
|
void putnyb();
|
|
|
|
/* Print a Space Character */
|
|
void putspc();
|
|
|
|
/* Print Word as Three Hex Digits *
|
|
* Args: int w - Number to print */
|
|
void putsqb();
|
|
|
|
/* Print Word as Hexadecimal Number *
|
|
* Args: int w - Number to print */
|
|
void putwrd();
|