ExecBase = 4 OpenLib = -552 CloseLib = -414 SysCopper = 38 CUSTOM = $DFF000 DMACONR = $002 DMACON = $096 VPOSR = $004 COP1LCH = $080 COPJMP1 = $088 COLOR00 = $180 COLOR01 = $182 BPLCON0 = $100 DIWSTRT = $08E DIWSTOP = $090 DDFSTRT = $092 DDFSTOP = $094 BPL1PTH = $0E0 BPL1PTL = $0E2 BPL2PTH = $0E4 BPL2PTL = $0E6 ********* INIT ************************************ 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 #$8380,DMACON(a6) ; activate copper+ BPL in DMA channel move.l #copper,COP1LCH(a6) ; move new copper to copper register move.w #0,COPJMP1(a6) ; (H and L) & activate new copper ; move.b #%00001111,bpl1 ; move.b #%00110011,bpl2 ********* MAIN ************************************ main: ; bsr waitVBI ; wait for the vertical blanc ; before updating the screen btst #6,$BFE001 ; is lmb prssed bne main ; 0 = pressed ********* EXIT ************************************ 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 move.w #$7FFF,DMACON(a6) ; deactivate all DMA channels or.w #$8200,olddma ; set bits 15 and 9 move.w olddma,DMACON(a6) ; retore old DMA to DMACON rts ********* ROUTINES *********************************** 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 BPLCON0,$2200 dc.w DIWSTRT,$2C81 ; define display window size dc.w DIWSTOP,$2CC1 ; 320 X 256 pixels dc.w DDFSTRT,$38 ; define display data fetch dc.w DDFSTOP,$D0 ; size to 320 pxels dc.w BPL1PTH,$0005 ; give denise the pointer dc.w BPL1PTL,$0000 ; to the first bitplane dc.w BPL2PTH,$0005 ; give denise the pointer dc.w BPL2PTL,$2800 ; to the second bitplane dc.w $7007,$FFFE ; wait online $80 dc.w DIWSTRT,$2CC1 ; narrow the DIW size dc.w DIWSTOP,$2C81 ; dc.w $F007,$FFFE ; wait online $A0 dc.w DIWSTRT,$2C81 ; reset DIW size to std dc.w DIWSTOP,$2CC1 ; palet: dc.w $180,$000 ; COLOR00 dc.w $182,$50A ; COLOR01 dc.w $184,$A06 ; COLOR00 dc.w $186,$F01 ; COLOR01 dc.w $FFFF,$FFFE ORG $00050000 bpl1: dcb.b 320/8*256,%00110011 bpl2: dcb.b 320/8*256,%00001111