Search found 633 matches

by janbredenbeek
Tue Oct 30, 2018 11:31 pm
Forum: Software & Programming
Topic: ED Floppy Discs
Replies: 5
Views: 2604

Re: ED Floppy Discs

It's QL5B and the sector size is 2048 bytes, so for direct access you should open 'flpx_*D4e'.

Jan.
by janbredenbeek
Sat Oct 27, 2018 12:52 am
Forum: QL Emulation
Topic: USB Floppy Disk Device (Drive) with Support for Windows 10 and QPC2?
Replies: 51
Views: 32441

Re: USB Floppy Disk Device (Drive) with Support for Windows 10 and QPC2?

I've had problems reading floppies too. I remember QPC2 v3 worked fine but v4 did not, at least not on Windows 7. I also remember at least v3 worked on XP, maybe v4 too. In the end I archived all my floppies as .flp images using Linux's dd command, which QPC reads happily. No experience on Windows 1...
by janbredenbeek
Tue Oct 09, 2018 11:32 pm
Forum: Software & Programming
Topic: Proposal about the file system
Replies: 13
Views: 7510

Re: Proposal about the file system

Evening Giorgio, the backup date in the file header is used by WinBack, to store the date the file was last backed up and to compare with the "last modified date" when checking whether or not the file needs backing up. I suspect other backup utilities do a similar thing, but I did it firs...
by janbredenbeek
Wed Oct 03, 2018 10:22 pm
Forum: Software & Programming
Topic: QED v2.02 released
Replies: 0
Views: 2270

QED v2.02 released

QED v2.02 has been released and can be downloaded here . New features ------------ - The RC command can now be used to load a file in cooked mode. It is equivalent to the R command, except that CR/LF line endings are converted to LF and TABS compressed or expanded according to the TAB compression an...
by janbredenbeek
Tue Sep 25, 2018 12:44 pm
Forum: Software & Programming
Topic: QED v2.01 released!
Replies: 2
Views: 1486

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: 5469

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: 45676

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: 45676

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: 47050

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: 47050

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...