Welcome to mirror list, hosted at ThFree Co, Russian Federation.

flash.asm - github.com/ClusterM/coolboy-multirom-builder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 62c3986247e749c78fbd10beb2e87d3910cc03eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
FLASH_TYPE .rs 1 ; flash memory type
STATE_CELL_NEXT .rs 2 ; address of the cell for next state save

flash_detect:
  lda #0
  sta <FLASH_TYPE
  .if USE_FLASH_WRITING
  ; reset flash
  lda #$F0
  sta $8000
  ; enter flash CFI mode
  lda #$98
  sta $8AAA
  ; check for CFI signature
  lda $8020
  cmp #'Q'
  bne .end
  lda $8022
  cmp #'R'
  bne .end
  lda $8024
  cmp #'Y'
  bne .end
  lda $804E
  sta <FLASH_TYPE
.end:
  lda #$F0
  sta $8000
  .endif
  jmp flash_return

  ; NROM_BANK_L, NROM_BANK_H - bank
flash_erase_sector:
  jsr select_prg_chr_banks
  lda #$F0
  sta $8000
  lda #$AA
  sta $8AAA
  lda #$55
  sta $8555
  lda #$80
  sta $8AAA
  lda #$AA
  sta $8AAA
  lda #$55
  sta $8555
  lda #$30
  sta $8000
  lda #$FF
.wait:
  cmp $8000
  bne .wait
  cmp $8000
  bne .wait
  jmp flash_return

  ; NROM_BANK_L, NROM_BANK_H - bank
  ; COPY_DEST_ADDR - dest. address
  ; x - count (bytes)
flash_write:
  jsr select_prg_chr_banks
  lda #$80 ; PRG-RAM unprotect
  sta $A001
  lda #$F0 ; reset flash
  sta $8000
  ldy #$00
.loop:
  lda #$AA
  sta $8AAA
  lda #$55
  sta $8555
  lda #$A0
  sta $8AAA
  lda BUFFER, y
  sta [COPY_DEST_ADDR], y
.wait:
  cmp [COPY_DEST_ADDR], y
  bne .wait
  cmp [COPY_DEST_ADDR], y
  bne .wait
  iny
  dex
  bne .loop
.end:
  jmp flash_return

  ; read up to 256 bytes from flash to RAM
  ; NROM_BANK_L, NROM_BANK_H - bank
  ; COPY_SOURCE_ADDR - source address
  ; x - count (bytes)
flash_read:
  jsr select_prg_chr_banks
  ldy #$00
.loop:
  lda [COPY_SOURCE_ADDR], y
  sta BUFFER, y
  iny
  dex
  bne .loop
  jmp flash_return

  ; read 8 kilobytes of flash to PRG RAM... and RAM
  ; we can't set highest bit of 0x6003 to 1
  ; so it's a bit complicated code with storing 
  ; each 32th bit to RAM
flash_load_prg_ram:
  ldx #$00
  stx COPY_DEST_ADDR
  ldx #$60
  stx COPY_DEST_ADDR+1
  ldx #0
.block_loop:
  txa
  pha
  ; load 256 bytes to buffer
  ldx #0
  jsr flash_read
  pla
  tax
  ldy #0
  lda #$80
  sta $A001 ; PRG-RAM un-protect
.loop:
  lda BUFFER, y
  pha ; original value to stack
  ; every 4th byte...
  tya
  and #%00000011
  cmp #%00000011
  bne .store
  ; pulling back value
  pla
  ; shifting high bit to C flag
  asl A
  ; storing high bit to RAM
  ror PRG_RAM_FIX, x
  ; shifting value back clearing high bit
  lsr A
  ; back to stack
  pha
  ; chech y again, every 32 byte increase x index
  tya
  and #%00011111
  cmp #%00011111
  bne .store
  inx
.store:
  ; storing values in cartridge's RAM
  pla
  sta [COPY_DEST_ADDR], y
  iny
  bne .loop
  inc COPY_SOURCE_ADDR+1
  inc COPY_DEST_ADDR+1
  ; if high bit of COPY_DEST_ADDR+1 is set it's $8000
  bpl .block_loop
  jmp flash_return

  ; find non-FF byte with 8-byte step
  ; NROM_BANK_L, NROM_BANK_H - bank
  ; STATE_CELL_NEXT - start address, result
flash_find_empty_cell:
  jsr select_prg_chr_banks
  lda #0
  ldx #0
.prep_loop:
  sta BUFFER, x
  clc
  adc #8
  inx
  bne .prep_loop
  jsr select_prg_chr_banks
  lda #$80
  sta <STATE_CELL_NEXT+1
  lda #$00
  sta <STATE_CELL_NEXT
  ldx #3
  lda #$FF
.loop:
  inx
  ldy BUFFER, x
  bne .next
  inc <STATE_CELL_NEXT+1
.next:
  cmp [STATE_CELL_NEXT], y
  bne .loop
.end:
  sty <STATE_CELL_NEXT
  jmp flash_return

  ; Returh to 0th bank and reinit
flash_return:
  ldx #$00
  ldy #$00
  stx $8000
  sty $8001 ; 0
  inx
  iny
  iny
  stx $8000
  sty $8001 ; 2
  inx
  iny
  iny
  stx $8000
  sty $8001 ; 4
  inx
  iny
  stx $8000
  sty $8001 ; 5
  inx
  iny
  stx $8000
  sty $8001 ; 6
  inx
  iny
  stx $8000
  sty $8001 ; 7
  lda #$01
  sta $A000 ; mirroring
  lda #$00
  sta $A001 ; PRG-RAM protect
  sta COOLBOY_REG_0
  sta COOLBOY_REG_1
  sta COOLBOY_REG_2
  sta COOLBOY_REG_3
  rts