Hmm there is some confusion here.
For QPAC2, you use LRESPR flp1_QPAC2 and then use commands like:
to launch the files Thing when you press ALT + f
However, QPAC1 is different.
There is not just one file for QPAC1 on the download on Marcel's site - it actually creates a level 2 directory structure (which q-emulator is not very good at!)
For example - attach the zip file to slot 1:
should show:
meaning this is a parent directory.
Unfortunately, in q-emulator, this just shows as
will then show:
Code: Select all
QPAC1_alarm ->
QPAC1_calc ->
QPAC1_clndr ->
QPAC1_dig ->
QPAC1_sysmon ->
QPAC1_typer ->
These are all sub-directories - again not obvious from within q-emulator for some reason.
will then show:
Code: Select all
QPAC1_Alarm_English
QPAC1_Alarm_French
QPAC1_Alarm_German
These are the executable versions for the different language variants of the Alarm program.
You can then add these to your boot with:
Code: Select all
ERT HOT_RES('a', 'flp1_QPAC1_alarm_english')
For example, then press ALT a to launch the alarm program.
What is missing is the original boot file (although that did not cope with multiple languages):
Code: Select all
1000 drv$='flp1_'
1010 WINDOW #0,512, 42, 0,214: BORDER #0,1,4*9+192
1020 WINDOW #1,256,182,256, 30: BORDER #1,1,7*9+192
1030 WINDOW #2,256,182, 0, 30: BORDER #2,1,7*9+192
1040 MODE 4
2000 :
2010 REMark Load SuperToolkit II and/or Lightning here
2020 :
2030 base=RESPR(13480) : LBYTES drv$&'ptr_gen',base : CALL base
2040 base=RESPR(7832) : LBYTES drv$&'wman',base : CALL base
2050 base=RESPR(10248) : LBYTES drv$&'hot_rext',base : CALL base
2060 :
2070 REMark Any other resident extensions can be loaded here,
2080 REMark including old-style HOTKEY files. Don't put in an
2090 REMark old BOOT_REXT with PTR in it, though unless you
2100 REMark remove the RESPRs (etc) for PTR_GEN and WMAN!
2110 :
2120 :
2130 ERT HOT_RES('a', drv$ & 'alarm')
2140 ERT HOT_RES('c', drv$ & 'calculator')
3010 ERT HOT_RES('k', drv$ & 'calendar')
3020 ERT HOT_RES('d', drv$ & 'clock')
3030 ERT HOT_RES('m', drv$ & 'sysmon')
3040 ERT HOT_RES('w', drv$ & 'typer')
3050 ERT HOT_PICK('b','')
3060 ERT HOT_LOAD('s', drv$ & 'config')
3070 :
3080 REMark Any other hotkeyed programs can be loaded here
4000 :
4010 HOT_GO
4020 HOT_DO 'm': PAUSE 50: HOT_DO 'b': HOT_LIST
4030 :
4040 REMark There is now a job going, so nothing can be loaded
4050 REMark into the Resident Procedure area. You can still use
4060 REMark HOT_RES, but the programs will be put in the heap.