BASIC assembler: suppressing all listing
Dave Higton (1515) 3534 posts |
It isn’t possible to suppress all the output from a section of BASIC assembler, is it? The bit I can’t prevent is the output of the base address at the start of the pass. It isn’t a show-stopper, of course. I’ve got one little bit of BASIC assembler to compare two chunks of data. I like to avoid assembly language and keep everything in a HLL, but this little loop makes a big difference to the speed of the whole thing. At the moment, when the app runs, it assembles the code into memory, but it corrupts the screen. I can of course solve the corruption by pre-assembling the code and reading it from file into memory, but it seems a shame not to have all the code in one file when it’s not big. |
Martin Avison (27) 1494 posts |
Have you got the OPT on the same line as the opening [ ? |
Dave Higton (1515) 3534 posts |
Ha! Simple as that. Thank you, Martin. I’d never have thought of that. |
Dave Higton (1515) 3534 posts |
Martin, you have email (I hope). |