Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 260
» Latest member: Dekxter
» Forum threads: 1,074
» Forum posts: 6,439
Full Statistics
|
Online Users |
There are currently 259 online users. » 0 Member(s) | 257 Guest(s) Bing, Google
|
Latest Threads |
Printing with FZX
Forum: Help & Support
Last Post: boriel
07-17-2025, 09:08 PM
» Replies: 1
» Views: 334
|
Strange Happenings
Forum: Bug Reports
Last Post: boriel
05-23-2025, 09:15 AM
» Replies: 4
» Views: 2,503
|
.tap file code not execut...
Forum: Help & Support
Last Post: Zoran
04-28-2025, 10:59 AM
» Replies: 4
» Views: 2,694
|
Exit from more than one l...
Forum: Wishlist
Last Post: Duefectu
04-23-2025, 10:06 PM
» Replies: 3
» Views: 2,247
|
put small ASM programs li...
Forum: How-To & Tutorials
Last Post: Zoran
04-18-2025, 02:02 PM
» Replies: 6
» Views: 5,212
|
Creating +3 Menus - Loadi...
Forum: Help & Support
Last Post: merlinkv
04-16-2025, 02:08 PM
» Replies: 6
» Views: 3,675
|
Randomize not very random...
Forum: Help & Support
Last Post: Zoran
04-08-2025, 10:40 AM
» Replies: 4
» Views: 3,410
|
Scope rules
Forum: Bug Reports
Last Post: Zoran
04-04-2025, 09:46 AM
» Replies: 2
» Views: 1,927
|
Using constants not allow...
Forum: Bug Reports
Last Post: baltasarq
03-19-2025, 10:00 PM
» Replies: 8
» Views: 4,682
|
404 page not found
Forum: Documentation
Last Post: boriel
03-08-2025, 07:16 PM
» Replies: 5
» Views: 5,397
|
|
|
Error: LET string1 = string1 ( 1 TO LEN string1) (solved) |
Posted by: zarsoft - 08-14-2024, 10: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 - 08-07-2024, 07: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
|
|
|
Includes in ASM |
Posted by: bracckets - 03-27-2024, 03:16 PM - Forum: How-To & Tutorials
- Replies (2)
|
 |
Is it possible to use assembler includes in the inline ASM code blocks
so the assembler can be broken down into files, e.g.
INCLUDE maths.asm
Also is it possible to include binary files in the assembler e.g.
BINARY 'test.bin'
Thanks
|
|
|
|