mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-01 01:06:33 +00:00
58 lines
932 B
ArmAsm
58 lines
932 B
ArmAsm
; Xcircle
|
|
|
|
; draws a circle pattern
|
|
|
|
; by Vince `deater` Weaver / DsR
|
|
|
|
; zero page locations
|
|
GBASL = $26
|
|
GBASH = $27
|
|
HGR_SCALE = $E7
|
|
HGR_ROTATION = $F9
|
|
|
|
; ROM locations
|
|
HGR2 = $F3D8
|
|
HPOSN = $F411
|
|
XDRAW0 = $F65D
|
|
XDRAW1 = $F661
|
|
HPLOT0 = $F457
|
|
|
|
xcircle:
|
|
|
|
lda #$20
|
|
sta HGR_SCALE
|
|
sta HGR_ROTATION
|
|
|
|
jsr HGR2 ; Hi-res, full screen ; 3
|
|
; Y=0, A=0 after this call
|
|
|
|
; A and Y are 0 here.
|
|
; X is left behind by the boot process?
|
|
|
|
tiny_loop:
|
|
ldy #0
|
|
ldx #140
|
|
lda #96
|
|
jsr HPOSN ; set screen position to X= (y,x) Y=(a)
|
|
; saves X,Y,A to zero page
|
|
; after Y= orig X/7
|
|
; A and X are ??
|
|
;tiny_loop:
|
|
ldx #<our_shape ; load $E2 into A, X, and Y
|
|
ldy #>our_shape ; our shape table is in ROM at $E2E2
|
|
inc HGR_ROTATION
|
|
lda HGR_ROTATION
|
|
|
|
jsr XDRAW0 ; XDRAW 1 AT X,Y
|
|
; Both A and X are 0 at exit
|
|
; Z flag set on exit
|
|
; Y varies
|
|
|
|
beq tiny_loop ; bra
|
|
|
|
|
|
our_shape = $E2E2
|
|
|
|
;our_shape:
|
|
;.byte $1a,$2d,$00
|