Software that emulates an aMIC computer on a Linux OS.
The virtual aMIC boots in monitor.Launch BASIC with G0800Launch VISIBLE-Z80 with G8000 Sample BASIC program: 10 PRINT 'HELLO WORLD!' 20 FOR I=0 TO 10 30 PRINT 'I IS: ';I 40 NEXT I 50 END RUN Warning! PC's Back Space key is mapped to aMIC's 'BS' which apparently does nothing, use Delete instead.From more information you'll need A. Petrescu, 1985 (volume 2) and/or M. Patrubany, 1989 book.
10 PRINT 'HELLO WORLD!' 20 FOR I=0 TO 10 30 PRINT 'I IS: ';I 40 NEXT I 50 END RUN
From more information you'll need A. Petrescu, 1985 (volume 2) and/or M. Patrubany, 1989 book.