mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-15 17:08:51 +00:00
21 lines
326 B
Plaintext
21 lines
326 B
Plaintext
/***************************************
|
|
* PRDEC0 TEST - Test routine prdecr *
|
|
* from file prdec.asm for Apple 1 *
|
|
***************************************/
|
|
|
|
#include <apple1.h>
|
|
#include <apple1.asm>
|
|
#include <prdec.asm>
|
|
|
|
byte i;
|
|
|
|
main:
|
|
|
|
i = 0;
|
|
loop:
|
|
prdecr(i);
|
|
echo(32);
|
|
i++;
|
|
if (i<>0) goto loop;
|
|
goto exit;
|