[ql-users] rom image

2005-06-16 Thread Dilwyn Jones
Try again (don't know who I sent the first copy to by mistake). I've been offered an article for QL Today if I can answer the following query. Being at work, I haven't got the answer to hand, so if anyone can help, I'd be grateful. I have a rom image on disk which won't load with the usual

Re: [ql-users] rom image

2005-06-16 Thread Marcel Kilgus
Dilwyn Jones wrote: base=respr(48*1024) lbytes filename,base CALL base+peek_l(base+4) At base+4 is a pointer to SBASIC extensions, but most ROMs do the BASIC initialisation themselves, I think. Therefore CALL base+peek_w(base+6) is really the correct code, but in practice it doesn't make a

Re: Re: [ql-users] rom image

2005-06-16 Thread Dilwyn Jones
base=respr(48*1024) lbytes filename,base CALL base+peek_l(base+4) At base+4 is a pointer to SBASIC extensions, but most ROMs do the BASIC initialisation themselves, I think. Therefore CALL base+peek_w(base+6) is really the correct code, but in practice it doesn't make a difference