| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 174 online users. » 0 Member(s) | 169 Guest(s) Baidu, Bing, Facebook, Google, Twitter
|
| Latest Threads |
Old zxbasic game errors
Forum: Help & Support
Last Post: boriel
2025-11-09, 11:52 AM
» Replies: 7
» Views: 142
|
Error: Undefined GLOBAL l...
Forum: Help & Support
Last Post: ardentcrest
2025-11-04, 05:46 PM
» Replies: 3
» Views: 110
|
A Fast(er) Plot Routine f...
Forum: How-To & Tutorials
Last Post: tubz74
2025-10-30, 03:16 PM
» Replies: 2
» Views: 165
|
Hall of Fame - Include fo...
Forum: How-To & Tutorials
Last Post: tubz74
2025-10-28, 03:48 PM
» Replies: 0
» Views: 93
|
[SOLVED] Array layout bug...
Forum: Bug Reports
Last Post: Zoran
2025-10-25, 05:48 PM
» Replies: 2
» Views: 219
|
3DOS Commands?
Forum: Help & Support
Last Post: boriel
2025-10-06, 02:54 PM
» Replies: 3
» Views: 383
|
How to open fuse as an ex...
Forum: How-To & Tutorials
Last Post: zedex82
2025-10-05, 07:36 PM
» Replies: 2
» Views: 281
|
CLS/Fade out ASM Sub-rout...
Forum: How-To & Tutorials
Last Post: tubz74
2025-10-05, 03:39 PM
» Replies: 2
» Views: 274
|
ZX Basic Studio Bugs
Forum: Bug Reports
Last Post: Duefectu
2025-09-23, 04:07 PM
» Replies: 5
» Views: 1,083
|
Printing with FZX
Forum: Help & Support
Last Post: boriel
2025-07-17, 10:08 PM
» Replies: 1
» Views: 1,967
|
|
|
| This is weird - just plain won't run the code? |
|
Posted by: britlion - 2013-09-05, 08:16 PM - Forum: Bug Reports
- Replies (7)
|
 |
Input code:
Code: BORDER 2
CLS
Print "Temp File"
(Originally it was just the one print line).
Out put file: <!-- m --><a class="postlink" href="https://dl.dropboxusercontent.com/u/4903664/LawOfChaos.zip">https://dl.dropboxusercontent.com/u/490 ... fChaos.zip</a><!-- m -->
This just crashes the Spectrum.
Build settings: zxb -T -B -a "LawOfChaos.bas"
C:\zxb --version
zxb 1.3.0-s1022
I haven't compiled anything up in a while. But...it's odd it seems to be making a broken result?
|
|
|
| Optimizer bug (*solved*) |
|
Posted by: einar - 2013-08-30, 09:00 PM - Forum: Bug Reports
- Replies (2)
|
 |
Try running this program:
Code: sub x2()
DIM a AS UBYTE
LET a = 129
IF (a >= 224) OR (a <= 32) THEN
PRINT "Ops"
ELSE
PRINT "OK"
END IF
end sub
x2()
If compiled using "-O3" it will print "Ops", otherwise it will print "OK".
Tested using ZX BASIC version 1.3.0s1022.
|
|
|
| Comments inside ASM blocks (*solved*) |
|
Posted by: einar - 2013-08-20, 04:10 PM - Forum: Bug Reports
- Replies (2)
|
 |
Trying to compile the sub-routine below...
Code: sub test()
asm
ex af,af' ; A'=player
end asm
end sub
...produces this error message:
Quote:C:\...\zxbasic-1.3.0s1022\dist>zxb test.bas
test.bas:4: Error: illegal preprocessor character '='
However the following sub-routine compiles just fine:
Code: sub test()
asm
ex af,af' ; A=player
end asm
end sub
This other sub-routine also compiles just fine:
Code: sub test()
asm
exx ; A'=player
end asm
end sub
ZX BASIC parser is obviously misunderstanding those two apostrophes in the first case.
|
|
|
| started Philips-VG5000 version |
|
Posted by: nitrofurano - 2013-08-04, 09:07 AM - Forum: Wishlist
- No Replies
|
 |
hi there!
here are some news related to the philips-vg5000 version - the development progress is a bit more complicated than for msx or mattel-aquarius (issues with ix register?)
<!-- m --><a class="postlink" href="http://forum.system-cfg.com/viewtopic.php?f=25&t=4776">http://forum.system-cfg.com/viewtopic.php?f=25&t=4776</a><!-- m -->
|
|
|
|