Search found 629 matches

by janbredenbeek
Tue Sep 25, 2018 12:44 pm
Forum: Software & Programming
Topic: QED v2.01 released!
Replies: 2
Views: 1467

QED v2.01 released!

I'm very pleased to present you release 2.01 of QED, my ever popular text editor! This release comes exactly 30 years after version 1.01, which has been included in many QL software distributions. New features include: * Support for TK2 Data Default directories * Editing multiple files simultaneousl...
by janbredenbeek
Sat Sep 01, 2018 11:40 pm
Forum: Hardware
Topic: 8302
Replies: 8
Views: 5358

Re: 8302

Thank you Nasta for this very exhaustive description! The answer to most of the remaining questions can be found in the Minerva source code (notably the inc/pc include file). For instance, the Interface interrupt calls a routine which reads the keyboard and serial input data, but the same routine al...
by janbredenbeek
Tue Aug 28, 2018 10:40 am
Forum: QL Emulation
Topic: Ubuntu 14.04.4 and uqlx2017
Replies: 59
Views: 44185

Re: Ubuntu 14.04.4 and uqlx2017

I've been working mostly from the desktop. So, I've just looked in the Zip file, and yes there is a file '".uqlxrc" with <user> in it. So it does exist, I just cant see it. When you copy it to the Home directory, Do I have to retain the ".", so it remains invisible? If I want to...
by janbredenbeek
Mon Aug 27, 2018 2:36 pm
Forum: QL Emulation
Topic: Ubuntu 14.04.4 and uqlx2017
Replies: 59
Views: 44185

Re: Ubuntu 14.04.4 and uqlx2017

There is no .uqlxrc file, but there is a .uqlxrc-distro file. In Linux/Unix, file names starting with a dot are normally hidden when using the ls command, you can see them using 'ls -a' or 'ls -al'. So I copied that to the Home directory (/home/martin/), and renamed it .uqlxrc When it says 'edit th...
by janbredenbeek
Fri Aug 17, 2018 3:32 pm
Forum: Help for New Users
Topic: What Editor is best to use ?
Replies: 60
Views: 45832

Re: What Editor is best to use ?

But I'm curious if comparing A6 to the start of the job code will guarantee that your code is executing as a job. This might be true when you EXEC or HOT_LOAD a program (since this allocates space for both code and data and then loads and executes the code) but what about HOT_RES, which only alloca...
by janbredenbeek
Thu Aug 16, 2018 3:15 pm
Forum: Help for New Users
Topic: What Editor is best to use ?
Replies: 60
Views: 45832

Re: What Editor is best to use ?

Oh, right, I didn't remember that QD could be LRESPRed. Funnily enough this is the exact same bug that I diagnosed only a week ago in another tool and even wrote a blog post about: https://www.kilgus.net/2018/08/08/qdos-to-lrespr-or-not/ . I used to test D1 from SMS.INFO (see Multimon source) but i...
by janbredenbeek
Thu Aug 09, 2018 10:11 pm
Forum: Help for New Users
Topic: What Editor is best to use ?
Replies: 60
Views: 45832

Re: What Editor is best to use ?

I can't understand this problem. In S_Edit, I set SV_DDLST to "" to not let TK2 use its default directory. The only way to do so, to examine, if a file name really exists and to prevent TK2 to rush its default directory in front of a filename. So, things like "win1_flp2_test_asm"...
by janbredenbeek
Thu Aug 09, 2018 9:17 pm
Forum: Help for New Users
Topic: What Editor is best to use ?
Replies: 60
Views: 45832

Re: What Editor is best to use ?

I noticed the following: OPEN_DIR#4,flp2_QLtest_bas will return: - Bad Parameter - if QLtest_bas exists on flp2_ - no error - if QLtest_bas does not exist on flp2_ I just tested this on Qemulator 3.2 and could not reproduce it - in both cases OPEN_DIR gave no error. I used the JS and Minerva 1.97 R...
by janbredenbeek
Thu Aug 09, 2018 8:52 pm
Forum: Help for New Users
Topic: What Editor is best to use ?
Replies: 60
Views: 45832

Re: What Editor is best to use ?

Andrew wrote:Rich, I wish your SuperBasic manual had filtering capabilities, to filter all keywords from a specific toolkit (location, as it is named in the manual)
:D
EXTRAS should have a parameter as filter string :D . And print the location.
Actually quite easy to implement...
by janbredenbeek
Thu Aug 09, 2018 1:30 pm
Forum: Help for New Users
Topic: What Editor is best to use ?
Replies: 60
Views: 45832

Re: What Editor is best to use ?

I was intrigued by this and have replicated the issue... If you use the downloadeded zip from Dilwyn's site (1.02), and then enter: EXEC flp1_QED;'flp2_QLTest_bas' The program creates a new file called "flp2_flp2_QLTest_bas" rather than opening the existing flp2_QLTest_bas. The issue is t...