samishal Posted May 16, 2012 Share Posted May 16, 2012 Anyone aware of a BASIC command that displays the current amount of memory ? Quote Link to comment https://forums.atariage.com/topic/198020-ram/ Share on other sites More sharing options...
Willsy Posted May 16, 2012 Share Posted May 16, 2012 Only in extended basic. Can't do it with TI BASIC. In XB just type SIZE You can get an approximation in TI BASIC like this: 32000 A=0 32001 A=A+8 32002 GOSUB 32001 Run it with RUN 32000 When you get an error, do a PRINT A There's the *approximate* amount of memory remaining. (the above from memory from something I read in TI*MES in about 1989!) 1 Quote Link to comment https://forums.atariage.com/topic/198020-ram/#findComment-2523067 Share on other sites More sharing options...
Stuart Posted May 16, 2012 Share Posted May 16, 2012 Be aware though that TI BASIC can only use VDP RAM. It knows nothing about the 32K expansion. Extended BASIC can use VDP RAM for variable storage, and 24K of the 32K for program storage. The remaining 8K or the 32K is used for assembly routine storage. Only in extended basic. Can't do it with TI BASIC. In XB just type SIZE You can get an approximation in TI BASIC like this: 32000 A=0 32001 A=A+8 32002 GOSUB 32001 Run it with RUN 32000 When you get an error, do a PRINT A There's the *approximate* amount of memory remaining. (the above from memory from something I read in TI*MES in about 1989!) Quote Link to comment https://forums.atariage.com/topic/198020-ram/#findComment-2523393 Share on other sites More sharing options...
RXB Posted June 19, 2012 Share Posted June 19, 2012 Also you can get more memory to use by using: CALL FILES(1) This will free up memory for the program and have 1 file to open or close. Quote Link to comment https://forums.atariage.com/topic/198020-ram/#findComment-2544307 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.