1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-01 21:41:31 +00:00
C02/apple1/ehex.c02

19 lines
368 B
Plaintext
Raw Normal View History

2018-01-28 19:52:58 +00:00
/**************************************************
* ECHO HEX - Demo program for the Apple 1 *
* Displays typed key ASCII values in hexadecimal *
**************************************************/
#include <apple1.h>
#include <apple1.asm>
char key; //Key value
main:
key = getkey();
echo(key);
echo(32);
prbyte(key);
echo(32);
goto main;