[News] BBC BASIC Beta Testing - 2009/03/06 r720
Moderator: benryves
- benryves
- Maxcoderz Staff
- Posts: 3082
- Joined: Thu 16 Dec, 2004 10:06 pm
- Location: Croydon, England
- Contact:
Re: [News] BBC BASIC Beta Testing - 2009/01/21 r587
Thank you very much for the report, I've added it to the main package.
I've also changed the LCD delay stuff (again), this time slowing down the CPU to 6MHz during LCD operations. Maybe this will fix it (maybe it won't), but I'd love to hear from you.
I've also changed the LCD delay stuff (again), this time slowing down the CPU to 6MHz during LCD operations. Maybe this will fix it (maybe it won't), but I'd love to hear from you.
Re: [News] BBC BASIC Beta Testing - 2009/01/21 r587
I've looked at it quickly, and it seems ther's no longer problem with SIERPINS...
I'll test the performances when i'll have time...
________________________
(r587 - TI 84+)
I'll test the performances when i'll have time...
________________________
(r587 - TI 84+)
Re: [News] BBC BASIC Beta Testing - 2009/01/21 r587
I've made a few searches; I think you should look at this:
http://wikiti.denglend.net/index.php?ti ... By_Address
(LCD delay, Link)
And if you don't find out how to fix the USB problem, you can stille ask to the USB8X and MSD8X developpers
(http://www.ticalc.org/archives/files/fi ... 39064.html)
And I had a bug, but I dunno the reason... My calc crashed when I leaved your Apps (juste one time...)
________________________
(r587 - TI 84+)
http://wikiti.denglend.net/index.php?ti ... By_Address
(LCD delay, Link)
And if you don't find out how to fix the USB problem, you can stille ask to the USB8X and MSD8X developpers

And I had a bug, but I dunno the reason... My calc crashed when I leaved your Apps (juste one time...)
________________________
(r587 - TI 84+)
- benryves
- Maxcoderz Staff
- Posts: 3082
- Joined: Thu 16 Dec, 2004 10:06 pm
- Location: Croydon, England
- Contact:
Re: [News] BBC BASIC Beta Testing - 2009/01/21 r587
I'm hesitant to use this functionality as I can't check whether it works or not (only owning a TI-83+).Kiruahxh wrote:I've made a few searches; I think you should look at this:
http://wikiti.denglend.net/index.php?ti ... By_Address
(LCD delay, Link)


Heh, I've pestered BrandonW a fair amount already.And if you don't find out how to fix the USB problem, you can stille ask to the USB8X and MSD8X developpers(http://www.ticalc.org/archives/files/fi ... 39064.html)
Ah. Had you run any particular program or any particular command beforehand? I know it's annoying, but there's not much I can do with bugs that only happen occasionally.And I had a bug, but I dunno the reason... My calc crashed when I leaved your Apps (juste one time...)

Re: [News] BBC BASIC Beta Testing - 2009/01/21 r587
I was testing the triangle feature, but that's probably not the reason, and the WAIT command, that is not implemented??Had you run any particular program or any particular command beforehand?
- benryves
- Maxcoderz Staff
- Posts: 3082
- Joined: Thu 16 Dec, 2004 10:06 pm
- Location: Croydon, England
- Contact:
Re: [News] BBC BASIC Beta Testing - 2009/01/21 r587
It may be, the triangle filling code is pretty ugly.Kiruahxh wrote:I was testing the triangle feature, but that's probably not the reason

Where do you see mention of a WAIT command?and the WAIT command, that is not implemented??
If you want to pause for a certain amount of time, you can write a little procedure like this:
Code: Select all
DEF PROC_wait(t)t=t+TIME:REPEAT:UNTIL TIME>=t:ENDPROC
As procedure names have to start with PROC you may find
Code: Select all
DEF PROCRASTINATE(t)t=t+TIME:REPEAT:UNTIL TIME>=t:ENDPROC

Re: [News] BBC BASIC Beta Testing - 2009/01/21 r587
The LCD problems on the 84+ seem to be fixed.
- benryves
- Maxcoderz Staff
- Posts: 3082
- Joined: Thu 16 Dec, 2004 10:06 pm
- Location: Croydon, England
- Contact:
Re: [News] BBC BASIC Beta Testing - 2009/01/21 r587
I'm glad to hear it, thank you!
There's a new graphics demo program linked above. If you come up with a cool graphics demo - either a nifty animation or a pretty procedural graphic - I'd be interested in incorporating it into the demo as an example.
There's a new graphics demo program linked above. If you come up with a cool graphics demo - either a nifty animation or a pretty procedural graphic - I'd be interested in incorporating it into the demo as an example.

Re: [News] BBC BASIC Beta Testing - 2009/01/21 r587
Ben that is really amazing! I can just see the next Maxcoderz anniversary "program" being coded in BBC XD
Re: [News] BBC BASIC Beta Testing - 2009/01/21 r587
Your animation is excellent! Really cool!
The WAIT command: http://www.compulink.co.uk/~rrussell/bb ... ter03.html
The WAIT command: http://www.compulink.co.uk/~rrussell/bb ... ter03.html
- benryves
- Maxcoderz Staff
- Posts: 3082
- Joined: Thu 16 Dec, 2004 10:06 pm
- Location: Croydon, England
- Contact:
Re: [News] BBC BASIC Beta Testing - 2009/01/21 r587
Oh, I see. It wasn't listed on the BBC BASIC homepage which was why I got a bit confused!Kiruahxh wrote:The WAIT command: http://www.compulink.co.uk/~rrussell/bb ... ter03.html
BBC BASIC for Windows is more up to date and has a few extra features that are not available in the Z80 version. These features cannot be added to the Z80 version as the interpreter is "sealed"; all I can do is change the way it interacts with the calculator. (Another example is that BBC BASIC for Windows has helper functions for graphics, such as CIRCLE, instead of having to memorise PLOT codes).
BBC BASIC (Z80) is very close to BBC BASIC (86) if you want something to compare it against. The only major difference that I'm aware of is BBC BASIC (86)'s ON ERROR LOCAL, which does not work on the Z80 version (and as it constitutes an error in the error handler puts BBC BASIC into an infinite loop!)
- benryves
- Maxcoderz Staff
- Posts: 3082
- Joined: Thu 16 Dec, 2004 10:06 pm
- Location: Croydon, England
- Contact:
Re: [News] BBC BASIC Beta Testing - 2009/01/23 r599
r599 fixes two missing tokens in the PC software (file converter and editor), one my mistake (I'd typed OPENIN when one of them should have been OPENUP) and one because it was undocumented (PUT).
On the features front I've started reintroducing device file support (.DEV). So far the only available device is SIRCS.DEV, which will let you send and receive commands to and from "Sony Serial Infrared Remote Control System"-compatible remote controls.
On the features front I've started reintroducing device file support (.DEV). So far the only available device is SIRCS.DEV, which will let you send and receive commands to and from "Sony Serial Infrared Remote Control System"-compatible remote controls.
Re: [News] BBC BASIC Beta Testing - 2009/01/23 r599
Are there any on-calc text editors that are compatible with BBC Basic? NoteFolio doesn't quite work .
- benryves
- Maxcoderz Staff
- Posts: 3082
- Joined: Thu 16 Dec, 2004 10:06 pm
- Location: Croydon, England
- Contact:
Re: [News] BBC BASIC Beta Testing - 2009/01/23 r599
Not that I know of, sorry. 

- tr1p1ea
- Maxcoderz Staff
- Posts: 4136
- Joined: Thu 16 Dec, 2004 10:06 pm
- Location: I cant seem to get out of this cryogenic chamber!
- Contact:
Re: [News] BBC BASIC Beta Testing - 2009/01/23 r599
Why would you need antoher text editor?