On 26/10/22 12:02, Will Senn wrote:

... but in the meantime, is there a trick to fast output I'm missing?

Something that may help, (from memory) subroutine locations are scanned 
linearly from the start of the
program, so a simple trick is to put your frequently called subroutines at the 
start of the program
with the first statement being a goto to jump past them (and of course, the 
subroutines ordered in
the most frequently called order).  e.g.

10 GOTO 1000
100 SUBROUTINE 1 ...
200 SUBROUTINE 2 ...
1000 MAIN

But as John said, post the code, and we (by which I mean others :)) may be able 
to offer incremental
improvements.

Cheers,
  --dt

Reply via email to