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