Re: [Ql-Users] SuperBASIC parser vectors

2017-03-08 Thread Marcel Kilgus
Jan Bredenbeek wrote: > I got the names from the Minerva source. Obviously they were 'invented' by > Laurence since they are not documented in the original QDOS documentation > :-) Well, they are in the TK2 source (as part of SMSQ/E), too, so probably not named by Lau ;) > The vector which is

Re: [Ql-Users] SuperBASIC parser vectors

2017-03-08 Thread Jan Bredenbeek
On 8 March 2017 at 13:54, Marcel Kilgus wrote: > Jan Bredenbeek wrote: > > MOVE.W$12C,A0 > > JSR $4000(A0) call pa_graph to parse line > > Wow, the old and new names are mightily confusing. > > What once was called pa_graph is now sb_parse. >

Re: [Ql-Users] German Minerva ROM

2017-03-08 Thread George Gwilt
> On 7 Mar 2017, at 15:53, pg...@q40.de wrote: > > > GWASS did not produce the same code as QMAC from Minerva source, and > required various sourcecode changes, which now no longer allow to > use QMAC. We did not hunt down all the subtle differences yet. I'm > sure this could all be solved

Re: [Ql-Users] German Minerva ROM

2017-03-08 Thread pgraf
On 8 Mar 2017 at 11:24, George Gwilt wrote: > > GWASS did not produce the same code as QMAC from Minerva source, and > > required various sourcecode changes, which now no longer allow to > > use QMAC. We did not hunt down all the subtle differences yet. I'm > > sure this could all be solved by

[Ql-Users] SuperBASIC parser vectors

2017-03-08 Thread Jan Bredenbeek
This is the code I used for entering a line into SuperBASIC. It should of course be called from a SuperBASIC environment. * Enter line into SuperBASIC system * The SuperBASIC text should be in the buffer (BV.BFBAS(A6) to BV.BFP(A6)) P2_ENTMOVE.LA5,-(A7) Save A5 QDOS MT.INF

Re: [Ql-Users] SuperBASIC parser vectors

2017-03-08 Thread Jan Bredenbeek
On 8 March 2017 at 17:46, Marcel Kilgus wrote: The ED command build into SMSQ/E addresses pa..table therefore thus: > > move.l pa..table*3+qlv.off+2,a2 graph table address > > So strictly speaking the pa..table thing is not QL compatible anymore. > This could

Re: [Ql-Users] SuperBASIC parser vectors

2017-03-08 Thread Marcel Kilgus
Jan Bredenbeek wrote: > MOVE.W$12C,A0 > JSR $4000(A0) call pa_graph to parse line Wow, the old and new names are mightily confusing. What once was called pa_graph is now sb_parse. What once was called pa_table is now sb_graph. > Like I stated earlier, this code has