| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 74 online users. » 0 Member(s) | 72 Guest(s) Bing, Google
|
| Latest Threads |
New video Couse / Nuevo c...
Forum: News
Last Post: Duefectu
2026-04-29, 11:02 PM
» Replies: 0
» Views: 127
|
location of heap manageme...
Forum: Help & Support
Last Post: boriel
2026-03-07, 12:13 AM
» Replies: 1
» Views: 400
|
non-paged supervisor code...
Forum: Help & Support
Last Post: sdo303
2026-02-20, 06:38 PM
» Replies: 8
» Views: 1,126
|
How to open fuse as an ex...
Forum: How-To & Tutorials
Last Post: Duefectu
2026-02-09, 01:52 PM
» Replies: 3
» Views: 1,311
|
Old zxbasic game errors
Forum: Help & Support
Last Post: boriel
2025-11-09, 11:52 AM
» Replies: 7
» Views: 1,966
|
Error: Undefined GLOBAL l...
Forum: Help & Support
Last Post: ardentcrest
2025-11-04, 05:46 PM
» Replies: 3
» Views: 1,010
|
A Fast(er) Plot Routine f...
Forum: How-To & Tutorials
Last Post: tubz74
2025-10-30, 03:16 PM
» Replies: 2
» Views: 1,115
|
Hall of Fame - Include fo...
Forum: How-To & Tutorials
Last Post: tubz74
2025-10-28, 03:48 PM
» Replies: 0
» Views: 576
|
[SOLVED] Array layout bug...
Forum: Bug Reports
Last Post: Zoran
2025-10-25, 05:48 PM
» Replies: 2
» Views: 1,150
|
3DOS Commands?
Forum: Help & Support
Last Post: boriel
2025-10-06, 02:54 PM
» Replies: 3
» Views: 1,298
|
|
|
| system routines from spectrum 48k for zxbasic. |
|
Posted by: funkheld - 2024-11-10, 03:02 PM - Forum: How-To & Tutorials
- Replies (3)
|
 |
hello, good day.
I want to buy "the spectrum" at the age of 76.
I come from Germany.
I'm currently playing with the fuse and the zxbasic.
This zxbasic is wonderful.
I also play with the asm from the zxbasic.
I now want to learn how to use the system routines of the spectrum 48k with the zxbasic-asm.
Where can I find a system listing for the spectrum 48k?
thanks.
Best wishes
|
|
|
| Error: LET string1 = string1 ( 1 TO LEN string1) (solved) |
|
Posted by: zarsoft - 2024-08-14, 11:45 AM - Forum: Bug Reports
- Replies (3)
|
 |
In my program I had
DIM EDLINE AS STRING ' global variable
and if I wrote
EDLINE = EDLINE( TO LEN EDLINE-2)
then the test
EDLINE = ""
it didn't always work
and I had to use
LEN EDLINE = 0
Then I changed it to
aux = EDLINE( TO LEN EDLINE-2)
EDLINE = aux
and the test
EDLINE = ""
worked well.
|
|
|
| Error: loop ends every second (solved) |
|
Posted by: zarsoft - 2024-08-07, 08:37 PM - Forum: Bug Reports
- Replies (5)
|
 |
When you press "1" the loop ends every second.
Code: SUB Menu
DIM k$ AS STRING
CLS
PRINT
DO
PRINT
PRINT
PRINT "MENU"
PRINT " 1 - Test"
PRINT " 0 - Exit"
DO
k$ = INKEY$
LOOP UNTIL (k$ >= "0") AND (k$ <= "1") ' loop ends every second
'LOOP UNTIL k$ <> "" ' runs OK
'LOOP UNTIL (k$ = "0") OR (k$ = "1") ' runs OK
'LOOP UNTIL (k$ >= "0") AND (k$ <= "1") ' loop ends every second
PRINT
IF k$ = "1" THEN PRINT "Option 1"
LOOP UNTIL k$ = "0"
PRINT
PRINT
PRINT
END SUB
Menu
|
|
|
|