Search found 632 matches

by janbredenbeek
Fri Jun 15, 2018 11:00 pm
Forum: The Off-Topic Section
Topic: World Cup 2018 Including Patio Chair Sweepstakes
Replies: 66
Views: 35537

Re: World Cup 2018 Including Patio Chair Sweepstakes

vanpeebles wrote:Late goal for Iran!
You mean it was a fantastic goal from Morocco? :D
by janbredenbeek
Fri Jun 15, 2018 10:56 pm
Forum: The Off-Topic Section
Topic: Happy Birthday!
Replies: 437
Views: 213787

Re: Happy Birthday!

NormanDunbar wrote:This might backfire!

Fijne verjaardag.
Helemaal goed!

regards, Jan.
by janbredenbeek
Wed Jun 13, 2018 10:19 pm
Forum: The Off-Topic Section
Topic: Happy Birthday!
Replies: 437
Views: 213787

Re: Happy Birthday!

Thanks!
by janbredenbeek
Mon May 21, 2018 11:20 pm
Forum: Software & Programming
Topic: Minerva Autostart defeat?
Replies: 2
Views: 1403

Re: Minerva Autostart defeat?

As per the title really, is there a way to defeat the auto start on Minerva and leave it on the ROM scan F1/F2/F3/F4 page without auto starting? I couldn't find anything in the manual, and there wasn't anything obvious in the source. The code is in sb/start.asm at the read_key label. You need to se...
by janbredenbeek
Mon May 21, 2018 4:45 pm
Forum: Software & Programming
Topic: SMSQ/E sources - mirror git repository
Replies: 13
Views: 5686

Re: SMSQ/E sources - mirror git repository

The main problem would be the possible creation of SMSQ/E forks while there is still an 'official' version being maintained by Wolfgang. It's not abandonware like many other QL projects and Wolfgang could get unjustified support calls for forked versions. I'm in more or less the same position with t...
by janbredenbeek
Mon May 21, 2018 4:02 pm
Forum: Software & Programming
Topic: Q68 - setting up a BBQL style environment
Replies: 4
Views: 2194

Re: Q68 - setting up a BBQL style environment

The command to map a WIN device to a QLWA file on the Q68 is WIN_DRIVE <drive nr>,<SDcard nr>,<QLWA file> so WIN_DRIVE 8,1,Q68_SMSQ.WIN will get you access to the SMSQ system drive on WIN8. Then, do a LRESPR win8_config_menu_rext_english and EX win8_config_menuconfig and you can configure the Q68_SM...
by janbredenbeek
Fri May 18, 2018 11:37 pm
Forum: Software & Programming
Topic: Adjusting the QNET timings on a QXL2
Replies: 3
Views: 2389

Re: Adjusting the QNET timings on a QXL2

The pointer to the linkage block can be found using PEEK_L(base_of_channel_definition_block+4). The pointers to the I/O, open and close routines are then at offset 4, 8 and 12 respectively. But when calling these routines register A3 is set to point 24 bytes below this, to allow for linked lists for...
by janbredenbeek
Sun May 06, 2018 12:10 am
Forum: Software & Programming
Topic: Status of QMON
Replies: 77
Views: 34908

Re: Status of QMON

I noticed that there is a copy of QMON in the QLE 3.17 distribution, in the SYS subdirectory. However this appears to be corrupted, it crashes every time I try to run it even on BBQLs.

Jan.
by janbredenbeek
Tue May 01, 2018 11:32 pm
Forum: Software & Programming
Topic: How to start programming with assembly?
Replies: 69
Views: 33797

Re: How to start programming with assembly?

QL2K include TK2.ROM will try Will read Qmac manual, I think aligning directive must exist. This was one of the bugs fixed in Qmac compared to the original GST assembler. A DS.W 1 at the end had no effect and in fact it could produce binaries with odd length - embarrassing when you tried to EXEC th...
by janbredenbeek
Mon Apr 30, 2018 11:39 pm
Forum: Software & Programming
Topic: How to start programming with assembly?
Replies: 69
Views: 33797

Re: How to start programming with assembly?

The standard header is not really required - but recommended if you want your program to be identified by job control utilities such as in TK2. He has forgotten the trap #1 (mt.inf) after the first clr.l d0. But that should not cause a crash - only garbage as QDOS version. The real problem is that i...