Search found 852 matches

by Martin_Head
Mon Oct 08, 2018 10:34 am
Forum: QL Emulation
Topic: Ubuntu 14.04.4 and uqlx2017
Replies: 59
Views: 44952

Re: Ubuntu 14.04.4 and uqlx2017

Thats the code for DrvClose() Which are you referring to. "move.l $1C(a3),a3" That's the address of the I/O routine in the driver linkage block. or "The address that is called (A3) contains $AAAAAAAC" AAAA is the I/O routine. This is from the UQLX source code QLdrivers.c #if 0 /...
by Martin_Head
Sat Oct 06, 2018 11:27 am
Forum: QL Emulation
Topic: Ubuntu 14.04.4 and uqlx2017
Replies: 59
Views: 44952

Re: Ubuntu 14.04.4 and uqlx2017

I have been doing a few tests trying to find why my network driver does not work with UQLX2017. I have found odd behaviour when it tries to read from the network with a system trap call. It does not return an error code in D0, D0 remains unchanged. Here's a code snippet from my driver. ; -----------...
by Martin_Head
Wed Sep 26, 2018 11:08 am
Forum: QL Emulation
Topic: Ubuntu 14.04.4 and uqlx2017
Replies: 59
Views: 44952

Re: Ubuntu 14.04.4 and uqlx2017

I have re-assembled my IPBasic program to use a '*' in front of IP devices. And did a quick test on UQLX2017 IPBasic.zip If you open two copies of UQLX on the same PC. Then on one enter 100 OPEN#8,"*tcp_" 110 IP_BIND#8,5800,"127.0.0.1" 120 IP_LISTEN#8 130 REPeat loop 140 ch=IP_AC...
by Martin_Head
Mon Sep 24, 2018 10:19 am
Forum: QL Emulation
Topic: Ubuntu 14.04.4 and uqlx2017
Replies: 59
Views: 44952

Re: Ubuntu 14.04.4 and uqlx2017

Have you tried running my Network driver with two copies of SMSQemulator, so that you know you have seen it working. Now you have recompiled QULX, You might like to try http://www.dilwyn.me.uk/internet/IPBasic.zip It's a SuperBASIC interface to the IP device driver, that allows you to use individual...
by Martin_Head
Sat Sep 22, 2018 11:11 am
Forum: QL Emulation
Topic: Ubuntu 14.04.4 and uqlx2017
Replies: 59
Views: 44952

Re: Ubuntu 14.04.4 and uqlx2017

Martin, I can make a few changes to the source code of UQLX ( on my system) to edit out the *, and recompile. I will then retest with Dilwyn's test program. If you have a short test suite for your IP driver, I can test out the IP driver on the updated UQLX. Tim Swenson If you recompile you will nee...
by Martin_Head
Fri Sep 21, 2018 11:20 am
Forum: QL Emulation
Topic: Ubuntu 14.04.4 and uqlx2017
Replies: 59
Views: 44952

Re: Ubuntu 14.04.4 and uqlx2017

I e-mailed Graeme Gregory to ask if the IP Device Driver was working in UQLX 2017. He says that he has never used IP on UQLX. From a search on the web, I found that back in 2009 someone was having problems getting the IP driver to work when compiling UQLX. Something to do with the version of the so...
by Martin_Head
Thu Sep 20, 2018 11:03 am
Forum: QL Emulation
Topic: Ubuntu 14.04.4 and uqlx2017
Replies: 59
Views: 44952

Re: Ubuntu 14.04.4 and uqlx2017

I e-mailed Graeme Gregory to ask if the IP Device Driver was working in UQLX 2017. He says that he has never used IP on UQLX. From a search on the web, I found that back in 2009 someone was having problems getting the IP driver to work when compiling UQLX. Something to do with the version of the sof...
by Martin_Head
Wed Sep 12, 2018 10:35 am
Forum: QL Emulation
Topic: Ubuntu 14.04.4 and uqlx2017
Replies: 59
Views: 44952

Re: Ubuntu 14.04.4 and uqlx2017

I'm not sure why you would want to use TV mode in uqlx - That doesn't make much sense to me, as the reason , the small screen and some characters lost on the left doesn't really apply here. The ROMs are not patched, to my knowledge, but rather an F1 key press is simulated after starting the emulato...
by Martin_Head
Tue Sep 11, 2018 10:38 am
Forum: QL Emulation
Topic: Ubuntu 14.04.4 and uqlx2017
Replies: 59
Views: 44952

Re: Ubuntu 14.04.4 and uqlx2017

On another point, When UQLX starts. I don't get the QDOS/Minerva start screen, it just goes straight into monitor mode as if F1 had been pressed. Is this an option that I can turn off, or have the supplied ROM images been patched to auto F1 on start up? Its controlled by FAST_STARTUP = 1 in the .uq...
by Martin_Head
Mon Sep 10, 2018 11:12 am
Forum: QL Emulation
Topic: Ubuntu 14.04.4 and uqlx2017
Replies: 59
Views: 44952

Re: Ubuntu 14.04.4 and uqlx2017

Are the IP device drivers built into uqlx2017? I am trying to test my IP Network driver in uqlx. But I get a 'Not Found' error when I try to start the driver. I'm guessing it's failing when the program tries to open a couple of TCP channels. I have not investigated too deeply yet, But I was just wo...