Skip to content

TOYOSHIKI Tiny BASIC for CP/M. Tested in CP/M 2.2 on Sharp X1.

Notifications You must be signed in to change notification settings

meister68k/ttbasic_cpm

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TOYOSHIKI Tiny BASIC for CP/M

The code tested in 60K CP/M 2.2 for SHARP X1.(on emulator)

Operation example

> list
10 FOR I=2 TO -2 STEP -1; GOSUB 100; NEXT I
20 STOP
100 REM Subroutine
110 PRINT ABS(I); RETURN

OK
>run
2
1
0
1
2

OK
>

The grammar is the same as
PALO ALTO TinyBASIC by Li-Chen Wang
Except 4 point to show below.

(1)The contracted form of the description is invalid.

(2)Force abort key
PALO ALTO TinyBASIC -> [Ctrl]+[C]
TOYOSHIKI TinyBASIC -> [ESC]

(3)SYSTEM command
SYSTEM return to CP/M.

(4)Other some beyond my expectations.

(C)2015 Tetsuya Suzuki
2021 ported by Meister
GNU General Public License

About

TOYOSHIKI Tiny BASIC for CP/M. Tested in CP/M 2.2 on Sharp X1.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 98.2%
  • Makefile 1.8%