[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: dmono question
On Thursday, December 13, 2012 12:44:37 AM UTC-6, Kevin wrote:
> I made an image, converted it with dmono, got two files out, dropped them on a disk via ciderpress banged in the following
> 10 X = PEEK(49239) : REM TURNS ON HI-RES
> 20 X = PEEK(49232) : REM TURNS ON GRAPHICS
> 30 X = PEEK(49246) : REM TURNS ON DOUBLE HI-RES
> 40 X = PEEK(49235) : REM TURNS ON MIXED MODE (OPTIONAL)
> 50 POKE 49165,0 : REM TURNS ON 80 COLUMN MODE
> RUN
> BLOAD IMAGE.BIN,A@2000
> but where do I load the second file? and whats the command?
I assume you are trying to load a double hi-res picture?
just add
60 POKE 49237,0 : ? CHR$(4)"BLOAD IMAGE.BIN.AUX,A$2000"
70 POKE 49236,0 : ? CHR$(4)"BLOAD IMAGE.BIN,A$2000"
rOB