mirror of
https://github.com/inexorabletash/jsbasic.git
synced 2025-01-03 09:30:23 +00:00
Add link to wscullin's emulator; no apos in HTML
This commit is contained in:
parent
895bd172d8
commit
241e8dc76d
11
index.htm
11
index.htm
@ -76,7 +76,7 @@ By <a href="mailto:inexorabletash@hotmail.com">Joshua Bell</a>
|
|||||||
<option value="sample.jot">JOT (Mike Gleason)</option>
|
<option value="sample.jot">JOT (Mike Gleason)</option>
|
||||||
|
|
||||||
<option disabled>Graphics</option>
|
<option disabled>Graphics</option>
|
||||||
<option value="sample.rodscolorpattern">Rod's Color Pattern</option>
|
<option value="sample.rodscolorpattern">Rod's Color Pattern</option>
|
||||||
<option value="sample.hacker">Hacker Logo (markwstock)</option>
|
<option value="sample.hacker">Hacker Logo (markwstock)</option>
|
||||||
<option value="sample.loreswalk">Random LoRes (John Melesky)</option>
|
<option value="sample.loreswalk">Random LoRes (John Melesky)</option>
|
||||||
<option value="sample.hireswalk">Random HiRes (John Melesky)</option>
|
<option value="sample.hireswalk">Random HiRes (John Melesky)</option>
|
||||||
@ -86,7 +86,7 @@ By <a href="mailto:inexorabletash@hotmail.com">Joshua Bell</a>
|
|||||||
<option value="sample.scribble">Scribble (William Simms)</option>
|
<option value="sample.scribble">Scribble (William Simms)</option>
|
||||||
<option value="sample.connections">Connections (Gregg Buntin)</option>
|
<option value="sample.connections">Connections (Gregg Buntin)</option>
|
||||||
<option value="sample.squiggle">Squiggle (Gregg Buntin)</option>
|
<option value="sample.squiggle">Squiggle (Gregg Buntin)</option>
|
||||||
<option value="sample.boys_surface">Boy's Surface (Lukas Innig)</option>
|
<option value="sample.boys_surface">Boy's Surface (Lukas Innig)</option>
|
||||||
<option value="sample.gaussian">Gaussian Distribution 2D (John Russ)</option>
|
<option value="sample.gaussian">Gaussian Distribution 2D (John Russ)</option>
|
||||||
<option value="sample.bitmaps">Bitmap Images (Brian Broker)</option>
|
<option value="sample.bitmaps">Bitmap Images (Brian Broker)</option>
|
||||||
<option value="sample.mandelbrot">Mandelbrot Set (c/o Gregory Lewis)</option>
|
<option value="sample.mandelbrot">Mandelbrot Set (c/o Gregory Lewis)</option>
|
||||||
@ -130,8 +130,8 @@ By <a href="mailto:inexorabletash@hotmail.com">Joshua Bell</a>
|
|||||||
on an Apple since the erroneous second statement is never reached. <code>10 END : CHR$(PRINT)</code>
|
on an Apple since the erroneous second statement is never reached. <code>10 END : CHR$(PRINT)</code>
|
||||||
<li>Handling of BASIC code that does not match the canonical <code>LIST</code> output format may not behave as on an Apple:
|
<li>Handling of BASIC code that does not match the canonical <code>LIST</code> output format may not behave as on an Apple:
|
||||||
<ul>
|
<ul>
|
||||||
<li>Keyword parsing differs from Applesoft command line. For example <code>FOR I = S TO P</code> doesn't collapse into <code>FOR I = STOP</code>.
|
<li>Keyword parsing differs from Applesoft command line. For example <code>FOR I = S TO P</code> doesn't collapse into <code>FOR I = STOP</code>.
|
||||||
<li>The interpreter doesn't actually care about line numbers for statement ordering (just for <code>GOTO</code>/<code>GOSUB</code> targets and <code>IF</code> statements). So <code>20 PRINT "A"</code>, <code>10 PRINT "B"</code> will just print A, then B
|
<li>The interpreter doesn't actually care about line numbers for statement ordering (just for <code>GOTO</code>/<code>GOSUB</code> targets and <code>IF</code> statements). So <code>20 PRINT "A"</code>, <code>10 PRINT "B"</code> will just print A, then B
|
||||||
</ul>
|
</ul>
|
||||||
<li>To improve readability, lines may start with <code>:</code> and continue the previously numbered line.
|
<li>To improve readability, lines may start with <code>:</code> and continue the previously numbered line.
|
||||||
<li>Floating point overflow is only detected on variable assignment.
|
<li>Floating point overflow is only detected on variable assignment.
|
||||||
@ -157,8 +157,9 @@ By <a href="mailto:inexorabletash@hotmail.com">Joshua Bell</a>
|
|||||||
<ul>
|
<ul>
|
||||||
<li><a href="http://www.6502asm.com/">6502asm.com</a> - a 6502 assembler/emulator in JavaScript
|
<li><a href="http://www.6502asm.com/">6502asm.com</a> - a 6502 assembler/emulator in JavaScript
|
||||||
<li><a href="http://www.quitebasic.com/">Quite BASIC</a> - a similar project aimed at teaching programming
|
<li><a href="http://www.quitebasic.com/">Quite BASIC</a> - a similar project aimed at teaching programming
|
||||||
<li><a href="http://navahogunleg.net/blog/my-projects/ng-basic/">NG-BASIC for Javascript</a> Navaho Gunleg's interpreter
|
<li><a href="http://navahogunleg.net/blog/my-projects/ng-basic/">NG-BASIC for Javascript</a> Navaho Gunleg's interpreter
|
||||||
<li><a href="http://www.nicholson.com/rhn/basic/">BASIC Programming Resources</a>
|
<li><a href="http://www.nicholson.com/rhn/basic/">BASIC Programming Resources</a>
|
||||||
|
<li><a href="http://www.scullinsteel.com/apple2/">Apple II emulator in JavaScript</a>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<h3 id="history">History</h3>
|
<h3 id="history">History</h3>
|
||||||
|
Loading…
Reference in New Issue
Block a user