SimpleIDE Terminal: Max number of lines ~256?
John Kauffman
Posts: 653
in Propeller 1
From C, I'm running a loop from 0 to 300 that prints one line per loop. When I scroll back up in terminal there only only lines #45 to #300. Is there a limit to lines in the terminal or am I barking up the wrong tree?
- Thanks
#include "simpletools.h"
int main()
{
int counter; // counters need to be integers
for(counter=0;counter<=300;counter++)print("%d\n",counter);
}
- Thanks
#include "simpletools.h"
int main()
{
int counter; // counters need to be integers
for(counter=0;counter<=300;counter++)print("%d\n",counter);
}
Comments
if you need to capture some large output, try TeraTerm.