mirror of
https://github.com/a2-4am/4cade.git
synced 2025-04-03 20:30:07 +00:00
shave some bytes
This commit is contained in:
parent
3e27200935
commit
93e0b82214
@ -5,24 +5,22 @@
|
||||
!to "build/DGR.FIZZLE",plain
|
||||
*=$6000
|
||||
|
||||
ldx #(end-start) ; copy LFSR code to zero page
|
||||
- ldy start-1, x
|
||||
sty $FF, x
|
||||
ldx #(end-start+1) ; copy LFSR code to zero page
|
||||
- ldy start-2, x
|
||||
sty $81, x
|
||||
dex
|
||||
bne -
|
||||
|
||||
jmp loop
|
||||
|
||||
start
|
||||
!pseudopc 0 {
|
||||
!byte 0
|
||||
!pseudopc $83 {
|
||||
;X=0
|
||||
;Y=0
|
||||
loop txa
|
||||
loop1 eor #$05 ; LFSR form 0x0500 with period 2047
|
||||
ldx #$80
|
||||
wait dex
|
||||
bne wait
|
||||
wait inx
|
||||
bpl wait
|
||||
tax
|
||||
loop2 tya
|
||||
and #$78
|
||||
@ -31,13 +29,14 @@ loop2 tya
|
||||
txa
|
||||
ora #$04
|
||||
sta <dst+2
|
||||
lda <addrs, x
|
||||
bmi aux
|
||||
txa
|
||||
;C=0
|
||||
adc #$7C
|
||||
bpl aux
|
||||
sta $C004
|
||||
bpl + ; always branches
|
||||
aux and #$7F
|
||||
sta $C005
|
||||
+ sta <src+2
|
||||
!byte $24
|
||||
aux sta $C005
|
||||
setsrc sta <src+2
|
||||
src lda $FD00, y ; SMC high byte
|
||||
dst sta $FD00, y ; SMC high byte
|
||||
next txa
|
||||
@ -52,14 +51,12 @@ next txa
|
||||
bmi exit
|
||||
txa
|
||||
bne loop1
|
||||
exit lda $4400 ; last lousy byte (because LFSR never hits 0)
|
||||
exit lda $7C00 ; last lousy byte (because LFSR never hits 0)
|
||||
!if *+1 != $C0 {
|
||||
!error *
|
||||
}
|
||||
sta $0400
|
||||
sta $C004
|
||||
rts
|
||||
; source data is at $4000-$47FF/main
|
||||
; $4000-$43FF/main -> $0400-$07FF/aux
|
||||
; $4400-$47FF/main -> $0400-$07FF/main
|
||||
addrs
|
||||
!byte $44,$45,$46,$47,$C0,$C1,$C2,$C3
|
||||
}
|
||||
end
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 10956340
|
||||
!be24 10956327
|
||||
!le16 448
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 10956788
|
||||
!be24 10956775
|
||||
!le16 303
|
||||
|
@ -5,4 +5,4 @@
|
||||
;
|
||||
!byte 0
|
||||
!be24 10956046
|
||||
!le16 93
|
||||
!le16 80
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 10956139
|
||||
!be24 10956126
|
||||
!le16 201
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 10957091
|
||||
!be24 10957078
|
||||
!le16 2370
|
||||
|
@ -106,8 +106,8 @@ BlankDGR
|
||||
LoadIndexedDGRFile
|
||||
; in: caller has set IndexedDGRFilename
|
||||
; out: all flags & registers clobbered
|
||||
jsr LoadIndexedFile ; load index file into $4A00
|
||||
- !word $4A00
|
||||
jsr LoadIndexedFile ; load index file into $4000
|
||||
- !word $4000
|
||||
!word kDGRActionIndexRecord
|
||||
|
||||
jsr okvs_find
|
||||
@ -116,10 +116,9 @@ IndexedDGRFilename
|
||||
!word $FDFD ; SMC
|
||||
+ST16 @indexRecordPtr
|
||||
|
||||
jsr LoadIndexedFile ; load entire DGR screenshot at $4000..$47FF
|
||||
!word $4000 ; because that's where the transition code expects to find it
|
||||
; auxmem half is first ($4000..$43FF)
|
||||
; mainmem half is second ($4400..$47FF)
|
||||
jsr LoadIndexedFile ; load entire DGR screenshot at $7C00
|
||||
!word $7C00 ; because that's where the transition code expects to find it
|
||||
; auxmem half is first, mainmem second
|
||||
@indexRecordPtr
|
||||
!word $FDFD ; SMC
|
||||
rts
|
||||
|
Loading…
x
Reference in New Issue
Block a user