Page 2 of 8

Re: [Vb81] Test release.

Posted: Sat Sep 07, 2019 8:24 pm
by XavSnap
Greg,

Yes, the first load of VB81 can hang with this error!
:oops:
It seem to be a "loop" error to prepare the Vb workspace system.
I had to reload it.
May be the anti-virus protection who add a launch latences on OCX, DLLs…
On W10, this bug was trapped with a system update.

Windows add a launch screen how avoid this error!

I worked on a new release, enclose the Centronics emulation and some corrections.

VB81 XuR: "07-09-19"
[edit: update available]

Place new ROMs in the ROMs directory.
Memotech SIF and CIF not connected.
Centronics seen working.
"Save binary" using a REM line: ok.
The timer overclocking is back, but can hang the keyboard typing (use it to print/calculate…) and you had to reset it to enter something on the keyboard.
Some other bugs fixed too…

Re: [Vb81] Test release.

Posted: Sat Sep 07, 2019 8:31 pm
by XavSnap
… must update the ini file before crashing
:?:

No "ini" file in the Xur !

It store configs in the windows register datas.
#1 Launch = "object error"
#2 Launch = "Ok."

Re: [Vb81] SCR load bug

Posted: Mon Sep 09, 2019 11:06 pm
by GCHarder
When loading back a saved SCR file it will ovewrite the beginning of the VARS area. This is because the saved XXXX.scr file is 793 bytes when it should be 792 bytes. This is not a new bug it's been around for awhile, I just thought I'd mention it. It can cause problems at times.

Regards;

Greg

Re: [Vb81] Test release.

Posted: Tue Sep 10, 2019 12:49 am
by XavSnap
Great job Greg !

Another (hidden) bug fixed.
[Note: This function can't be use on an unexpended D_File screen! The ZX81 will hang or reboot… i tried it!]

The new BIN/SCR D_File loader can now load old, and new saved files!

Working on the Memotech SIF card…

All the best.

Re: [Vb81] Test release.

Posted: Thu Sep 12, 2019 2:11 am
by XavSnap
Hi,

Another update to load the Memotech Memotext ROM... if it's available.
The Memotech CIF isn't link yet, the BIOS jump wasn't dumped.(this tread)

...or...Test the Memotech Centronics card alone and dump only 3 PEEKs:
10 PRINT PEEK(2169)
20 PRINT PEEK(2170)
20 PRINT PEEK(2171)

Re: [Vb81] Disassembler Bugs

Posted: Tue Sep 17, 2019 8:34 pm
by GCHarder
When looking at a disassembled listing forward jumps are always off by one, they don't match the opcodes.

For example, 20;01 is listed as JR +2 instead of JR +1, this can be confusing if you don't remember that. On the other hand backward jumps are listed correctly.

Bitwise manipulations involving IY or IX are all messed up, see the attached.

Lest I give you the wrong idea, I find "VB81 XuR" great and use it exclusively for any projects I'm working on, maybe that's why I've noticed these bugs. Even the lack of WRX support isn't that much of a problem. I just test programs using Quicksilva's hires mode first, then convert it to run using WRX later on, when debugged.

Regards;

Greg

Re: [Vb81] Test release.

Posted: Wed Sep 18, 2019 2:11 am
by XavSnap
Many thanks Greg, for the support and the bug report.

the new release is now available.
:D


Web site binary download is now update (19/9/19) (4,8 M).

Re: [Vb81] Test release.

Posted: Thu Oct 03, 2019 7:17 pm
by XavSnap
Hi,

Vb81 r 03-10-2019

A new release to add Jpg, gif, pgn pictures formats.
The "multicolumn" zxPrinter is now able to save the listing in a PDF file.
(Memotech Cif not working (no rom dump); Memtext not available)
vb81a.JPG
http://zx81.vb81.free.fr/download/VB81_XuR_EXE.zip

(don't forget to add the "libhpdf.dll" in the executable directory !)

Re: [Vb81] Text Compiler Bug

Posted: Mon Oct 21, 2019 10:44 pm
by GCHarder
This line...
10 LET X=16623

Produces a false error message!

This line...

10 LET X=Val "16623"

Avoids the error message.

I've seen this bug before with other values as well, weird huh.

See the attached.

Regards;

Greg

Re: [Vb81] Test release.

Posted: Tue Oct 22, 2019 12:32 am
by XavSnap
Hi GCHarder,

Seem to be the same routine… :evil:
...Back to it...