aboutsummaryrefslogtreecommitdiff
path: root/bank3.s
blob: bf094087355fea4a0f42c9af2ada2e7c0c54ed38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

 .include "atari.inc"

 ; where the font lives. Must agree with bank7.s.
font = $9c00

 .org $8000
 .incbin "rodata.8000"

 .if * > font
  .fatal "bank7 code too large"
 .else
  .out .sprintf("=> %d bytes free in bank 3", font - *)
 .endif

 .res font - *, $ff
 .incbin "taifont"