ExecBase = 4 OpenLib = -552 CloseLib = -414 SysCopper = 38 CUSTOM = $DFF000 DMACONR = $002 DMACON = $096 VPOSR = $004 COP1LCH = $080 COPJMP1 = $088 COLOR00 = $180 run: move.l ExecBase,a6 ; get the addres of the graphics libary move.l #gfxname,a1 clr.l d0 jsr OpenLib(a6) tst.l d0 beq end move.l d0,gfxbase ; and save clr.l d0 ; get the address of the system copper move.l gfxbase,a6 move.l SysCopper(a6),d0 tst.l d0 beq end move.l d0,oldcopper ; and save lea CUSTOM,a6 ; move the base to a6 move.w DMACONR(a6),olddma ; save the current DMA state ; from DMACONR move.w #$7FFF,DMACON(a6) ; deactivate all DMA channels move.w #$8280,DMACON(a6) ; activate only the copper DMA channel move.l #copper,COP1LCH(a6) ; move new copper to copper register move.w #0,COPJMP1(a6) ; activate new copper main: btst #6,$BFE001 ; is lmb prssed bne main ; 0 = pressed clean: move.l Execbase,a6 ; close graphics library move.l gfxbase,a1 jsr CloseLib(a6) end: lea CUSTOM,a6 move.l oldcopper,COP1LCH(a6) ; restore system copper or.w #$8200,olddma ; set bits 15 and 9 move.w olddma,DMACON(a6) ; retore old DMA to DMACON rts waitVBI: move.l $DFF004,d0 ; get VPOSR lsr.l #8,d0 ; shift 8 to left and.l #$1FF,d0 ; mask out the 9bits of vpos cmp.l #$138,d0 ; are we at VBI bne waitVBI ; no -> wait rts waitraster: ; expects line to wait for in d1.w move.l $DFF004,d0 ; get VPOSR lsr.l #8,d0 ; shift 8 to left and.l #$1FF,d0 ; mask out the 9bits of vpos cmp.l d1,d0 ; are we at the wanted line bne waitraster ; no -> wait rts ********* DATA in FAST MEM ************************ gfxname: dc.b 'graphics.library',0 even gfxbase: ds.l 1 oldcopper: ds.l 1 olddma: ds.l 1 ********* DATA in CHIP MEM ************************ section copperlist,data_C copper: dc.w $100,$0200 dc.w $1B07,$FFFE dc.w $180,$F00 dc.w $7A07,$FFFE dc.w $180,$0F0 dc.w $D907,$FFFE dc.w $180,$00F dc.w $FFFF,$FFFE