1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-08 21:29:30 +00:00
C02/apple1/bfrtest.c02

21 lines
455 B
Plaintext
Raw Permalink Normal View History

2018-01-28 19:52:58 +00:00
/***************************************
* BUFFER TEST - Test buffer routines *
* from file prdec.asm for Apple 1 *
***************************************/
#include <apple1.h>
#include <apple1.asm>
#include <prdec.asm>
#include <buffer.asm>
char n;
main:
n = getbfr(); //Read line into buffer
prdec(n); //Print line length
echo($20); //Print a space
putbfr(); //Print buffer contents
goto main; // and loop