jmechner
100755 372 lines (285 sloc) 4.471 kb
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
 lst off

 org $c00

*-------------------------------------------------

 dum 0
curpage ds 1
xsave ds 1
ysave ds 1
asave ds 1
temp ds 1
tmplo ds 1
tmphi ds 1
level ds 1
isGS? ds 1
 dend

framebase = $1000

*------------------------------------------------- show
*
* put on the show!
*

show bit $C010

 lda #0
 sta isGS?

 bit $C081
 sec
 jsr $fe1f ;GS?
 bcs :notGS

 inc isGS?

* Use special show frame routine for //GS that
* writes directly to bank $E0, since page two
* text is not properly shadowed to that bank.

 ldx #$4C ;jmp
 ldy #GSshowframe
 lda #>GSshowframe
 stx showframe
 sty showframe+1
 sta showframe+2

* Make our lookup tables up in ramcard area

:notGS bit $C083
 bit $C083

 jsr MAKEfade_tbls

 jsr lgr

:again

 ldx #0
:fadein stx level
 lda #0
 jsr showframe
 ldx level
 inx
 cpx #15
 bcc :fadein

* Here we go...

 lda #0
:floop pha
 ldx #15
 jsr showframe
 pla
 clc
 adc #1
 cmp #23
 bcc :floop

 ldx #15
:fadeout stx level
 lda #22
 jsr showframe
 ldx level
 dex
 bpl :fadeout

 bit $C000
 bpl *-3
 bit $C010

 jmp :again

*------------------------------------------------- lgr
*
* Clear and display lo-resolution screen
*

lgr sta $C000 ;turn off 55.54 select
 sta $C00C ;40 columns
 bit $C052 ;full screen
 bit $C055 ;show page two
 bit $C056 ;lores
 bit $C050 ;graphics on

 lda #4 ;use page one next
 sta curpage

 ldy #0
 sty tmplo
 sta tmphi

 tya
 ldx #8

:0 sta (tmplo),y
 iny
 bne :0

 inc tmphi
 dex
 bne :0

 rts

*------------------------------------------------- loget
*
* Enter with a:frame number
* x:fade level
*

showframe asl
 asl
 adc #>framebase
 sta :src+2 ;hi byte

 txa
 ora #>fade_table
 sta :fademod+2

 lda curpage
 sta :dst+2
 eor #4!8
 sta curpage

 lda #4
 sta temp

 ldx #0
:loop
:src ldy $1100,x
:fademod lda fade_table+$F00,y
:dst sta $0400,x
 inx
 bne :loop

 inc :src+2 ;hibyte
 inc :dst+2 ; " "

 dec temp
 bne :loop

]waitvbl jsr waitvbl

 bit $C055
 lda curpage
 cmp #4
 beq *+5
 bit $C054

 rts

GSshowframe asl
 asl
 adc #>framebase
 sta :src+2 ;hi byte

 txa
 ora #>fade_table
 sta :fademod+2

 lda curpage
 sta :dst+2
 eor #4!8
 sta curpage

 lda #4
 sta temp

 ldx #0
:loop
:src ldy $1100,x
:fademod lda fade_table+$F00,y
:dst stal $E00400,x
 inx
 bne :loop

 inc :src+2 ;hibyte
 inc :dst+2 ; " "

 dec temp
 bne :loop
 beq ]waitvbl

*------------------------------------------------- waitvbl
*
* Wait for a few vbl's to go by!
*

waitvbl ldx #6
:0 bit $C019
 bpl :0
:1 bit $C019
 bmi :1
 dex
 bne :0
 rts

*------------------------------------------------- MAKEfade_tbls
*
* Make 16 lookup tables each containing 256 bytes
* for the 16 levels of fade-in.
*

MAKEfade_tbls dum 0
:curtmp ds 2 ;ptr into current tmp_scale table
:curfade ds 2 ;ptr into current page of fade table
:temp ds 1
:ysave ds 1
 dend

 jsr MAKEtmp_scale

 ldy #tmp_scale
 lda #>tmp_scale
 sty :curtmp
 sta :curtmp+1

 ldy #fade_table
 lda #>fade_table
 sty :curfade
 sta :curfade+1

* byte loop

 ldy #0

:bloop tya
 and #$0F
 jsr :convert
 sta :temp

 tya
 lsr
 lsr
 lsr
 lsr
 jsr :convert
 asl
 asl
 asl
 asl
 ora :temp

 sta (:curfade),y

 iny
 bne :bloop

* next fade table

 inc :curfade+1

* next tmp table

 clc
 lda :curtmp
 adc #16
 sta :curtmp
 bcc :bloop

 rts

* given a=0-15, in lores unsequential grey scale,
* convert it back to sequential, lookup new value
* in tmp_scale table and then convert back to
* lores unsequential.

:convert sty :ysave

* Convert lores color back to sequential 00-0F

 tax
 lda :unlores,x

* Scale it

 tay
 lda (:curtmp),y

* Convert back to unsequential lores color

 tax
 lda isGS?
 beq :notGS
 lda :loresGS,x
 bra :isGS

:notGS lda :lores2e,x

:isGS ldy :ysave
 rts

:unlores hex 000301070405020a
 hex 06080b0c090e0d0f

:loresGS hex 0002060104050803
 hex 090c070a0b0e0d0f

:lores2e hex 00000000
 hex 02020202
 hex 06060606
 hex 07070707

*------------------------------------------------- MAKEtmp_scale
*
* Make lookup table that contains values
* for 0-15 multiplied by 1/16... 16/16.
*

MAKEtmp_scale dum 0
:color ds 1
:scale ds 1
 dend

 lda #1 ;start with 1/16th
 sta :scale

:sloop ldy #0
:cloop sty :color
 lda #0
 ldx :scale
:mloop clc
 adc :color
 dex
 bne :mloop
 lsr
 lsr
 lsr
 lsr
:smc sta tmp_scale,y
 iny
 cpy #16
 bne :cloop
 inc :scale
 lda :smc+1
 clc
 adc #16
 sta :smc+1
 bcc :sloop
 rts

*-------------------------------------------------

 dum $D000
fade_table ds $1000
tmp_scale ds $100
 dend

*------------------------------------------------- EOF

Markdown Cheat Sheet

Format Text

Headers

# This is an <h1> tag
## This is an <h2> tag
###### This is an <h6> tag

Text styles

*This text will be italic*
_This will also be italic_
**This text will be bold**
__This will also be bold__

*You **can** combine them*

Lists

Unordered

* Item 1
* Item 2
  * Item 2a
  * Item 2b

Ordered

1. Item 1
2. Item 2
3. Item 3
   * Item 3a
   * Item 3b

Miscellaneous

Images

![GitHub Logo](/images/logo.png)
Format: ![Alt Text](url)

Links

http://github.com - automatic!
[GitHub](http://github.com)

Blockquotes

As Kanye West said:

> We're living the future so
> the present is our past.

Code Examples in Markdown

Syntax highlighting with GFM

```javascript
function fancyAlert(arg) {
  if(arg) {
    $.facebox({div:'#foo'})
  }
}
```

Or, indent your code 4 spaces

Here is a Python code example
without syntax highlighting:

    def foo:
      if not bar:
        return true

Inline code for comments

I think you should use an
`<addr>` element here instead.

Something went wrong with that request. Please try again. Dismiss

Looking for the GitHub logo?