Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 259
» Latest member: Jeffreybub
» Forum threads: 1,074
» Forum posts: 6,434

Full Statistics

Online Users
There are currently 278 online users.
» 0 Member(s) | 275 Guest(s)
Baidu, Bing, Google

Latest Threads
.tap file code not execut...
Forum: Help & Support
Last Post: Zoran
04-28-2025, 10:59 AM
» Replies: 4
» Views: 142
Exit from more than one l...
Forum: Wishlist
Last Post: Duefectu
04-23-2025, 10:06 PM
» Replies: 3
» Views: 241
put small ASM programs li...
Forum: How-To & Tutorials
Last Post: Zoran
04-18-2025, 02:02 PM
» Replies: 6
» Views: 1,487
Creating +3 Menus - Loadi...
Forum: Help & Support
Last Post: merlinkv
04-16-2025, 02:08 PM
» Replies: 6
» Views: 501
Randomize not very random...
Forum: Help & Support
Last Post: Zoran
04-08-2025, 10:40 AM
» Replies: 4
» Views: 402
Scope rules
Forum: Bug Reports
Last Post: Zoran
04-04-2025, 09:46 AM
» Replies: 2
» Views: 276
Using constants not allow...
Forum: Bug Reports
Last Post: baltasarq
03-19-2025, 10:00 PM
» Replies: 8
» Views: 995
404 page not found
Forum: Documentation
Last Post: boriel
03-08-2025, 07:16 PM
» Replies: 5
» Views: 2,828
Spectrum keywords codes
Forum: Bug Reports
Last Post: boriel
03-08-2025, 11:00 AM
» Replies: 1
» Views: 383
ZXodus][Engine
Forum: ZX Basic Compiler
Last Post: boriel
02-19-2025, 11:43 PM
» Replies: 69
» Views: 213,377

 
  Reading DATA
Posted by: baltasarq - 11-20-2024, 08:25 PM - Forum: ZX Basic Compiler - Replies (4)

Lo siento si esto ha sido preguntado antes, pero no lo he encontrado.

Dado un proc como este:


Code:
const NumLocs as ubyte = 2

'enum Exits
    const ExitNorth as ubyte = 0
    const ExitSouth as ubyte = 1
    const ExitEast as ubyte = 2
    const ExitWest as ubyte = 3
    const ExitUp as ubyte = 4
    const ExitDown as ubyte = 5
    const NumExits as ubyte = 6
'end enum

dim locDescs(NumLocs) as string
dim locExits(NumLocs, NumExits) as integer


sub init_locs()
    'locDescs( 0 ) = "El lugar del alunizaje. La vaina abierta y sin  " _
    '   + "contenido parece una triste parodia de ella misma. " _
    '   + "Un valle natural conduce al sur."
    'locDescs( 1 ) = "El lugar del alunizaje. La vaina abierta y sin  " _
    '   + "contenido parece una triste parodia de ella misma. " _
    '   + "Un valle natural conduce al sur."
   
    restore LocData
   
    for i = 0 to NumLocs - 1
        print "numloc i:", i
       
        ' Read the desc
        read locDescs( i )
        print "read numloc i: "; i; locDescs( i )
               
        ' Read the exits
        for j = 0 to NumExits - 1
            print "numloc i:"; i; " exit "; j
            read locExits(i, j)
            print "numloc i:"; i; " exit "; j; " = "; locExits(i, j)
            input a
        next
    next
   
    return
                     
    LocData:
    ' Loc 0 - Landing
    data "El lugar del alunizaje. La vaina abierta y sin  " _
      + "contenido parece una triste parodia de ella misma. " _
      + "Un valle natural conduce al sur."
    data -1, 1, -1, -1, -1, -1
   
    ' Loc 1 - Valley
    data "El lugar del alunizaje. La vaina abierta y sin  " _
      + "contenido parece una triste parodia de ella misma. " _
      + "Un valle natural conduce al sur."
    data 0, -1, -1, -1, -1, -1
end sub


El problema es el siguiente. Si descomento las primeras líneas y comento la línea
Code:
read locDescs( i )
y los data correspondientes, el programa parece que funciona. Pero si dejo el programa tal y como está, solo lee porquería en la posición i del vector locDescs, y el Speccy se reinicia. ¿No se pueden leer cadenas con READ? Según los docs, entiendo que sí...

Print this item

  Discord?
Posted by: StevesGaming - 11-19-2024, 09:24 PM - Forum: Off-Topic - Replies (6)

Does anyone know of a discord server that features a Boriel Basic channel?
(I did a search on here and found one but the link has expired.)

Thanks

Print this item

  New telegram channels
Posted by: boriel - 11-18-2024, 09:13 AM - Forum: ZX Basic Compiler - No Replies

Hi, there

The forum is still alive, yes, but it's clear that the recent waves of spam attack have causes a great damage to our community :-(
In the meantime other tools and communities have emerged around instant messaging (Discord, Telegram, etc).

I've created two official Telegram channels (English, and Spanish). Please follow the invitation links if you're willing to join.


Boriel ZX Basic Compiler
Official channel (English Only)
Invite link:
https://t.me/+ag4E7W05dvRkZmZk

Boriel ZX Basic [ES] (Spanish official channel)
Sobre el compilador Boriel ZX Basic
Enlace de invitación:
https://t.me/+dSbWL8z8ol1lMjA0

Print this item

  Help with Book
Posted by: StevesGaming - 11-16-2024, 07:15 PM - Forum: Help & Support - Replies (4)

Hello, I just registered!

I bought the Boriel Basic book and I'm just on page 52 where it tells you about debugging and adding breakpoints.  but when I add a breakpoint and press F6 I get errors!

"Exception: could not find file C:\zxbasic\helloworld\helloworld.buildtemp.ic"

How do I fix this?   (note: running the code normally with F5 and it works fine)

Thanks

Print this item

  which emulator for spectrum: FUSE or EightyOne
Posted by: funkheld - 11-13-2024, 12:19 PM - Forum: How-To & Tutorials - Replies (2)

hello, good day.

which emulator for the spectrum:
FUSE or EightyOne

which emulator is closer to the hardware?

thanks.
greetings

Print this item

  where can I get help with the memory on the spectrum 128k?
Posted by: funkheld - 11-13-2024, 08:02 AM - Forum: How-To & Tutorials - Replies (9)

hello, good day.

where can I get help with the memory on the spectrum 128k?

thanks.
greetings

Print this item

  where can I find free memory for data on the spectrum 48k if
Posted by: funkheld - 11-13-2024, 08:00 AM - Forum: How-To & Tutorials - Replies (3)

hello, good day.
where can I find free memory for data on the spectrum 48k if
I have made a program with zxbasic?

I want to move data with memcopy.

thanks.
best regards

Print this item

  system routines from spectrum 48k for zxbasic.
Posted by: funkheld - 11-10-2024, 02: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

Print this item

  Error on last version of the compiler (solved)
Posted by: zarsoft - 10-18-2024, 03:22 PM - Forum: Bug Reports - Replies (4)

My program works when compiled in version 116 but does not work when compiled in version 117.

Example:
- select 3 discs.
- move from 1 to 3
- move from 3 to 1

It gives an error in the last version.
(see attached files)
.zip   NewCompiler.zip (Size: 16.87 KB / Downloads: 174)

Print this item

  Error: Permission denied on new installation (solved)
Posted by: zarsoft - 10-15-2024, 07:14 PM - Forum: Bug Reports - Replies (2)

Permission denied on new installation.
(see image)

And now, what do I do to resolve this?



Attached Files
.png   ZXBASIC Error.png (Size: 58.36 KB / Downloads: 224)
Print this item