zxbasic icon indicating copy to clipboard operation
zxbasic copied to clipboard

The Sinclair ZX Spectrum BASIC compiler!

Results 29 zxbasic issues
Sort by recently updated
recently updated
newest added

Bumps [jinja2](https://github.com/pallets/jinja) from 3.1.2 to 3.1.3. Release notes Sourced from jinja2's releases. 3.1.3 This is a fix release for the 3.1.x feature branch. Fix for GHSA-h5c8-rqwp-cp95. You are affected if...

dependencies

The README says this: If you modify this project (the compiler .py or anything licensed as GPLv3) in any way you MUST publish the changes you made and submit your...

I found out that the so called condictional expressions (e.g. X=(100 and y=5) ), very common in many BASIC dialects (including Sinclair Basic) do not have the expected semantics/evaluation when...

enhancement

See https://www.boriel.com/forum/showthread.php?tid=2486

Ya que actualmente zxbasic necesita python 3, y los ficheros .py tienen codificación utf-8, se podrían eliminar las líneas ` # -*- coding: utf-8 -*-` que tenían sentido en python...

This: DIM s(16) SAVE "test" DATA s Fails to compile with: test.bas:2: error: Syntax Error. Unexpected token 's' Tried with and without brackets, different datatypes and same error. Syntax ok...

wontfix

Say I wanted to remove the inline IF functionality, particularly through commenting out lines 1381-1389 in src/zxbc/zxbparser.py. How would I do this or something with the same effect without making...

http://fizyka.umk.pl/~jacek/zx/doc/man128/sp128p10.html it would be great to add the sub language ans some examples.

Please can the following be added to both hex.bas which prints a binary representation of a byte, eg 8 would return "00001000" ``` function FASTCALL BinToString(num as ubyte) as String...