Welcome, Guest. Please login or register.


Author Topic: Q&A with Bruce Tanner (IS-BASIC writer) (Read 183704 times)

Offline Zozosoft

  • Global Moderator
  • EP addict
  • *
  • Posts: 14733
  • Country: hu
    • http://enterprise.iko.hu/
Re: Q&A with Bruce Tanner (IS-BASIC writer)
« Reply #285 on: 2013.October.10. 14:55:11 »
Quote from: BruceTanner
Two tracks between pads - you'd never do that by hand!
About the PCB design: the Enterprise motherboard how designed? By hand or PCB software on - for example - IBM PC?

Offline BruceTanner

  • EP lover
  • *
  • Posts: 607
  • Country: gb
Re: Q&A with Bruce Tanner (IS-BASIC writer)
« Reply #286 on: 2013.October.10. 15:01:23 »
Quote from: Zozosoft
About the PCB design: the Enterprise motherboard how designed? By hand or PCB software on - for example - IBM PC?
Good question...and not one I can remember the answer to. But I do remember after Enterprise at Madge Networks our hardware engineer (also ex-Madge) used PADS PCB software on an IBM PC. So it is very possible that the same was used at Enterprise.

Offline Saint

  • EP user
  • *
  • Posts: 266
  • Country: gb
Re: Q&A with Bruce Tanner (IS-BASIC writer)
« Reply #287 on: 2013.October.10. 22:27:36 »
I'm guessing given the quality of the motherboard it was routed 'by hand' using some design software. Auto routing traces even now is pretty rubbish compared to what a person can do.

It's also weirdly relaxing routing traces yourself... :)

Offline BruceTanner

  • EP lover
  • *
  • Posts: 607
  • Country: gb
Re: Q&A with Bruce Tanner (IS-BASIC writer)
« Reply #288 on: 2013.October.10. 23:32:41 »
Quote from: Saint
I'm guessing given the quality of the motherboard it was routed 'by hand' using some design software. Auto routing traces even now is pretty rubbish compared to what a person can do.

It's also weirdly relaxing routing traces yourself... :)
Yes I'm sure wasn't auto-routed, in the 30 years or so since then I have never worked on an auto-routed project! I don't know why the CAD software writers bother really...

Offline Zozosoft

  • Global Moderator
  • EP addict
  • *
  • Posts: 14733
  • Country: hu
    • http://enterprise.iko.hu/
Re: Q&A with Bruce Tanner (IS-BASIC writer)
« Reply #289 on: 2013.December.08. 19:04:42 »
Bruce!
GUS found two undocumented keywords in the IS-BASIC: PRIORITY and PROTECT.
Do you have any memories about these?

These are stored in the Segment 1 part of BASIC. The PRIORITY only in the 2.1 version.
SET PRIORITY n set the value of EXOS variable 38 - SPRITE (which are exist only in EXOS 2.1+).
I guess the PROTECT for the variable 34, but don't working. Probably some bug there? :oops:

Offline BruceTanner

  • EP lover
  • *
  • Posts: 607
  • Country: gb
Re: Q&A with Bruce Tanner (IS-BASIC writer)
« Reply #290 on: 2013.December.08. 19:12:57 »
Quote from: Zozosoft
Bruce!
GUS found two undocumented keywords in the IS-BASIC: PRIORITY and PROTECT.
Do you have any memories about these?
No, sorry I don't! Clearly we started thinking about a sprite h/w but I have no recallection of that at all :(:oops::smt017

Offline Zozosoft

  • Global Moderator
  • EP addict
  • *
  • Posts: 14733
  • Country: hu
    • http://enterprise.iko.hu/
Re: Q&A with Bruce Tanner (IS-BASIC writer)
« Reply #291 on: 2013.December.08. 19:32:21 »
Quote from: Zozosoft
I guess the PROTECT for the variable 34, but don't working. Probably some bug there? :oops:
Working :ds_icon_cheesygrin: SET TAPE PROTECT n
Interesting. Why is it missing from the BASIC Manual? Only the TAPE LEVEL and TAPE SOUND are documented. But the EXOS manual talking about it.
« Last Edit: 2013.December.08. 19:40:55 by szipucsu »

Offline Zozosoft

  • Global Moderator
  • EP addict
  • *
  • Posts: 14733
  • Country: hu
    • http://enterprise.iko.hu/
Re: Q&A with Bruce Tanner (IS-BASIC writer)
« Reply #292 on: 2014.April.30. 15:11:29 »
Bruce! Can you remember the original error messages how definied? It is a big meeting where all programmers talked about which errors possible and what is the right messages?
Or everyone just wrote the program and when definied a new error situation then add new error code and message?

Offline BruceTanner

  • EP lover
  • *
  • Posts: 607
  • Country: gb
Re: Q&A with Bruce Tanner (IS-BASIC writer)
« Reply #293 on: 2014.April.30. 15:48:53 »
Quote from: Zozosoft
Bruce! Can you remember the original error messages how definied? It is a big meeting where all programmers talked about which errors possible and what is the right messages?
Or everyone just wrote the program and when definied a new error situation then add new error code and message?
The latter - we didn't do big meetings! We were all working in the same big room so it was all very informal. The EXOS error codes (.XXX) were in an include file. We used a makefile system so whoever added a new code was unpopular because it caused everyone's files to reassemble!

I made the message text up as we went along, possibly modifying existing messages to keep them all consistent. As ROM space was short they had to try and be terse while still being reasonably user-friendly.

Offline Zozosoft

  • Global Moderator
  • EP addict
  • *
  • Posts: 14733
  • Country: hu
    • http://enterprise.iko.hu/
Re: Q&A with Bruce Tanner (IS-BASIC writer)
« Reply #294 on: 2014.April.30. 16:24:41 »
The idea of "***" begining for error messages where come from?
And very thoughtful solution the *** added as "NOP" command also in IS-BASIC and EXDOS. When re-executing previous (edited) commands then easy to press more enters than needed then the error message also entered as command line. But with this smart solution no problem, the error line don't do anything.


With friends and relatives who also used Enterprise we also use *** in the communication for sign of any problems. For example write SMS because don't got milk in the shop then I write:
*** milk not found

:lol:

Offline BruceTanner

  • EP lover
  • *
  • Posts: 607
  • Country: gb
Re: Q&A with Bruce Tanner (IS-BASIC writer)
« Reply #295 on: 2014.April.30. 17:02:09 »
Quote from: Zozosoft
*** milk not found

:lol:
:smt043

*** just made up one day to make the errors stand out

*** as a no op came much later in the light of using the editor in real life

B.
« Last Edit: 2014.May.02. 10:37:38 by szipucsu, Reason: Long quotation from previous message is unnecessary. »

Offline Zozosoft

  • Global Moderator
  • EP addict
  • *
  • Posts: 14733
  • Country: hu
    • http://enterprise.iko.hu/
Re: Q&A with Bruce Tanner (IS-BASIC writer)
« Reply #296 on: 2014.June.28. 10:49:19 »
Interesting question from lgb: IS-DOS are only running enviroment for the CP/M and also original CP/M code included?
Or a complete new OS which are only compatible with CP/M at function calls? And not used any code from the Digital Research?

Offline BruceTanner

  • EP lover
  • *
  • Posts: 607
  • Country: gb
Re: Q&A with Bruce Tanner (IS-BASIC writer)
« Reply #297 on: 2014.June.28. 13:14:55 »
Quote from: Zozosoft
Interesting question from lgb: IS-DOS are only running enviroment for the CP/M and also original CP/M code included?
Or a complete new OS which are only compatible with CP/M at function calls? And not used any code from the Digital Research?
No original CP/M code in there - it's a complete fresh OS that is compatible at the function call level (all the file I/O with FCBs, search for first/next etc, character I/O). I don't know how often this compatibility was used - I don't remember any bug reports to do with incompatibilities with CP/M programs, but maybe you know different after so long! There is certainly scope for incompatibilities with undocumented FCB fields because EXDOS uses them to support sub-directories, which CP/M doesn't. Also any low-level disk accessing such as formatting will be different of course.

Offline Zozosoft

  • Global Moderator
  • EP addict
  • *
  • Posts: 14733
  • Country: hu
    • http://enterprise.iko.hu/
Re: Q&A with Bruce Tanner (IS-BASIC writer)
« Reply #298 on: 2014.June.28. 15:49:59 »
And it is also compatible with MSX-DOS? In the documentation write "MSX compatible" at many function calls.
Unfortunately I never seen any MSX DOS programs.

Offline BruceTanner

  • EP lover
  • *
  • Posts: 607
  • Country: gb
Re: Q&A with Bruce Tanner (IS-BASIC writer)
« Reply #299 on: 2014.June.28. 17:55:48 »
Quote from: Zozosoft
And it is also compatible with MSX-DOS? In the documentation write "MSX compatible" at many function calls.
Unfortunately I never seen any MSX DOS programs.
Yes but I don't think it was a big deal - MSX-DOS was based on the CP/M function interface too. I expect there were some extra function calls but I can't remember the details. (Now we're on the subject MS-DOS was pretty similar too even though it's on a different processor!)