Search found 2699 matches

by tofro
Wed Dec 06, 2017 3:27 pm
Forum: Hardware
Topic: Q68 New users and general usage thread
Replies: 242
Views: 93315

Re: Q68 New users and general usage thread

Hello, A question about file transfer - is it safe to mount a QXL.win file on a Q68 SD card directly in QPC, or will this cause fragmentation? If this is possible it would obviously be the ideal method of file transfer between PCs and QLs. D. Yes, it is possible and will not cause fragmentation (ne...
by tofro
Tue Dec 05, 2017 6:25 pm
Forum: Hardware
Topic: Q68 serial
Replies: 4
Views: 1906

Re: Q68 serial

We have tested Sernet at 115.2k - worked perfectly fine.

Anything beyond that is currently missing OS support (and thus, a real application).

Tobias
by tofro
Tue Dec 05, 2017 12:54 pm
Forum: Software & Programming
Topic: Multiple job name
Replies: 10
Views: 4565

Re: Multiple job name

Giorgio, yes, a job can change its name, if it is prepared to do so. Some programs change the job name to the file that is being worked on - QD, for example will display the file being edited as part of the job name. It is, however, close to impossible to change a jobs name "from the outside&qu...
by tofro
Mon Dec 04, 2017 12:09 pm
Forum: Hardware
Topic: Microdrive Unit Design
Replies: 118
Views: 53278

Re: Microdrive Unit Design

2G007 ULA aging, something I have not thought of yet. If ever needed to be reengineered, we only have documented amplifier reading cascade, a block diagram with amplifiers for writing is not documented to my knowledge. I would expect the stock of available MD ULAs to last way longer than the availa...
by tofro
Mon Dec 04, 2017 10:13 am
Forum: Software & Programming
Topic: QLMultimon - source question
Replies: 19
Views: 8495

Re: QLMultimon - source question

Also, newly created jobs inherit the table from the creating job, not the owner job. Of course, if that job goes away without clearing JB_TRAPV you're in big trouble when an exception occurs... That sounds a bit like a system design fault to me, even if it's documented in the Technical guide (p. 14...
by tofro
Wed Nov 29, 2017 12:04 pm
Forum: Software & Programming
Topic: Floating point conversion
Replies: 17
Views: 8001

Re: Floating point conversion

Something along the lines of (Untested, no QL at hand...)

Code: Select all

x = respr (10)
a = a$ : REMark convert from String to float
POKE_F x, a
FOR i = 1 TO 6
   x$ = x$ & HEX$(PEEK (x + i - 1), 8)
END FOR i
PRINT X$
  
(i.e. POKE_F and PEEK combined) should work. POKE_F is part of Turbo Toolkit.

Tobias
by tofro
Mon Nov 27, 2017 3:13 pm
Forum: Software & Programming
Topic: BASIC: Returning non-scalar values from Procs
Replies: 12
Views: 5117

Re: BASIC: Returning non-scalar values from Procs

NB - I consciously changed the variable types from INTeger to F.P. in the formal parameter-list to highlight another 'curiosity' (and bone of contention for typed-data purists...) of S*Basic - namely that the types of x and y are inherited from the types of the actual parameters passed at run-time....
by tofro
Sat Nov 25, 2017 10:25 am
Forum: Links to QL Services and Websites
Topic: Sinclair Retro BBS online!
Replies: 96
Views: 91554

Re: Sinclair Retro BBS online!

I'm also trying to figure out how to make use of more than 8 colours on QPC2. I know there are SBASIC commands COLOUR_PAL and COLOUR_24 to change the palette but I'm looking for documentation to do this from machine code. Any ideas? . Just realized this apparently was never answered. I am pretty su...
by tofro
Fri Nov 24, 2017 4:57 pm
Forum: Software & Programming
Topic: Exceptions: Error in Pennell QDOS Companion
Replies: 2
Views: 1458

Re: Exceptions: Error in Pennell QDOS Companion

Most exceptions stack the following data on the SUPERVISOR SP, or A7 in the exception handler: 4(A7) = PC value that caused the exception. 0(A7) = Status Register value at exception time. That's three words in total on the SSP. Last sentence is correct, but doesn't fit your layout: address for PC s...
by tofro
Fri Nov 24, 2017 12:56 pm
Forum: Hardware
Topic: Minerva Rom burning
Replies: 10
Views: 6298

Re: Minerva Rom burning

Pr0f wrote: Yet another occasion of the 'wouldn't it have been nice if...' Just a few jumper pins would have done it...
Up to issue 5, this jumper pins were there - After the QL ROM story had settled, they removed it in issue 6.

Tobias