Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 381 online users. » 0 Member(s) | 380 Guest(s) Bing
|
Latest Threads |
Strange Happenings
Forum: Bug Reports
Last Post: boriel
05-23-2025, 09:15 AM
» Replies: 4
» Views: 1,862
|
.tap file code not execut...
Forum: Help & Support
Last Post: Zoran
04-28-2025, 10:59 AM
» Replies: 4
» Views: 2,048
|
Exit from more than one l...
Forum: Wishlist
Last Post: Duefectu
04-23-2025, 10:06 PM
» Replies: 3
» Views: 1,723
|
put small ASM programs li...
Forum: How-To & Tutorials
Last Post: Zoran
04-18-2025, 02:02 PM
» Replies: 6
» Views: 4,125
|
Creating +3 Menus - Loadi...
Forum: Help & Support
Last Post: merlinkv
04-16-2025, 02:08 PM
» Replies: 6
» Views: 2,848
|
Randomize not very random...
Forum: Help & Support
Last Post: Zoran
04-08-2025, 10:40 AM
» Replies: 4
» Views: 2,713
|
Scope rules
Forum: Bug Reports
Last Post: Zoran
04-04-2025, 09:46 AM
» Replies: 2
» Views: 1,459
|
Using constants not allow...
Forum: Bug Reports
Last Post: baltasarq
03-19-2025, 10:00 PM
» Replies: 8
» Views: 3,685
|
404 page not found
Forum: Documentation
Last Post: boriel
03-08-2025, 07:16 PM
» Replies: 5
» Views: 4,700
|
Spectrum keywords codes
Forum: Bug Reports
Last Post: boriel
03-08-2025, 11:00 AM
» Replies: 1
» Views: 1,173
|
|
|
This is weird - just plain won't run the code? |
Posted by: britlion - 09-05-2013, 07: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 - 08-30-2013, 08: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 - 08-20-2013, 03: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 - 08-04-2013, 08: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 -->
|
|
|
|