Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 381 online users. » 0 Member(s) | 378 Guest(s) Baidu, Bing, Google
|
Latest Threads |
Strange Happenings
Forum: Bug Reports
Last Post: boriel
05-23-2025, 09:15 AM
» Replies: 4
» Views: 843
|
.tap file code not execut...
Forum: Help & Support
Last Post: Zoran
04-28-2025, 10:59 AM
» Replies: 4
» Views: 1,136
|
Exit from more than one l...
Forum: Wishlist
Last Post: Duefectu
04-23-2025, 10:06 PM
» Replies: 3
» Views: 926
|
put small ASM programs li...
Forum: How-To & Tutorials
Last Post: Zoran
04-18-2025, 02:02 PM
» Replies: 6
» Views: 2,617
|
Creating +3 Menus - Loadi...
Forum: Help & Support
Last Post: merlinkv
04-16-2025, 02:08 PM
» Replies: 6
» Views: 1,526
|
Randomize not very random...
Forum: Help & Support
Last Post: Zoran
04-08-2025, 10:40 AM
» Replies: 4
» Views: 1,640
|
Scope rules
Forum: Bug Reports
Last Post: Zoran
04-04-2025, 09:46 AM
» Replies: 2
» Views: 806
|
Using constants not allow...
Forum: Bug Reports
Last Post: baltasarq
03-19-2025, 10:00 PM
» Replies: 8
» Views: 2,075
|
404 page not found
Forum: Documentation
Last Post: boriel
03-08-2025, 07:16 PM
» Replies: 5
» Views: 3,590
|
Spectrum keywords codes
Forum: Bug Reports
Last Post: boriel
03-08-2025, 11:00 AM
» Replies: 1
» Views: 734
|
|
|
string.bas errors when compiling with strict |
Posted by: rbiondi - 02-23-2024, 11:29 AM - Forum: Bug Reports
- Replies (2)
|
 |
Hello,
I'm trying to compile my program with --strict option and getting some errors in string.bas:
Code: zxbasic/src/arch/zx48k/library/string.bas:124: error: strict mode: missing type declaration for 's$'
I just fixed and tried to create a branch and send a merge request to zxbasic git repository but I'm not authorized.
Thank you,
Rogerio
|
|
|
Mimex |
Posted by: rbiondi - 12-31-2023, 11:08 PM - Forum: Gallery
- No Replies
|
 |
Hi,
I hope you and your families had a Merry Christmas.
I'm publishing this post before the end of this year (2023) to announce a new game in development for the ZX Spectrum Computers (ZX Spectrum 128 and ZX Spectrum Next).
BOVESPA (B3) is the Brazilian Stock Exchange. It was formerly called "Bolsa de Valores de São Paulo" before changing its name to B3 (Brasil, Bolsa, Balcão), founded on August 23, 1890.
If you want to know more about B3, follow this link.
MIMEX is a game inspired by the Magnavox Odyssey 2 game "The Great Wall Street Treasure Hunt" from the Strategy Series.
Odyssey 2 was marketed here in Brazil by Philips and this was my first videogame. I received it from my parents as a Christmas Gift, in 1983, with the large Wall Street box, that was the first game I played on this system. It was a deception because I was only 8 years old and could barely pass the Level 1 game (buy and sell stocks). But 40 years passed since then and now I'm older, stronger, smarter and faster , and I'm finishing my MBA in Capital Markets and Investments, so I just wanted to recreate a much improved version of the childwood game with the following features:
- Buy and Sell Stocks (Level 1);
- Buy and Sell Treasure Bills (Improved Level2);
- Buying on Margin (Improved Level 3);
- Buy and Sell PUT or CALL Options (Improved Level 4);
- IR (Investor Relations Events) - 1:2 splits, 2:1 grouping, dividend payments, judicial recoveries and bankruptcies;
- Much Improved Market Engine, written from scratch;
- Updated tickers (Brazilian B3);
- Updated news headlines;
Other improvements in consideration:
- 4 Players (instead of the original 2 players);
- Game length selection (1 - 5 years) ;
- Other secret improvements to be disclosed in the future;
![[Image: dI%2BeNV.png]](https://img.itch.zone/aW1nLzE0NTE3MzMwLnBuZw==/original/dI%2BeNV.png)
Best regards and a happy new year to all!
Rogerio Biondi
More info:
https://rbiondi.itch.io/mimex
|
|
|
From Forum |
Posted by: zarsoft - 12-07-2023, 02:54 PM - Forum: Wishlist
- Replies (1)
|
 |
Email notifications from the Forum come from "Forum".
WICH FORUM?!
Can you change
Forum <forum@boriel.com>
To
Boriel Forum <forum@boriel.com>
or
ZX BASIC Forum <forum@boriel.com>
or something like that?
Thanks.
|
|
|
include |
Posted by: zarsoft - 12-07-2023, 02:47 PM - Forum: Help & Support
- No Replies
|
 |
I want to include the file "utils.h" on all my programs.
Is there a way I can do this automatically
without writing inside my program
and without writing on the compiler command line?
Can I put this line
#include <utils.h>
inside some compiler file from src\arch\zx48k\library ?
I want this behave like it was on the first line of my program.
|
|
|
Array FLOAT only works if global (solved) |
Posted by: zarsoft - 11-14-2023, 12:45 AM - Forum: Bug Reports
- Replies (4)
|
 |
This program only works if the array is global.
Is this supose to work like this?
Code: SUB Test
DIM T(3) AS FLOAT => {0.5,1.5,2.5,3.5}
PRINT
FOR i = 0 TO 3
PRINT "T(";i;")= ";T(i)
NEXT i
T(0) = 0.5
T(1) = 1.5
T(2) = 2.5
T(3) = 3.5
PRINT
FOR i = 1 TO 3
PRINT "T(";i;")= ";T(i)
NEXT i
PAUSE 0
END SUB
Test
|
|
|
|