]> git.sur5r.net Git - cc65/blob - libsrc/atari/mcbpm-shape.s
address issue raised in the pull request; add support to not use page 6
[cc65] / libsrc / atari / mcbpm-shape.s
1 ;
2 ; P/M mouse shape default definition
3 ;
4 ; Christian Groessler, 11.04.2014
5 ;
6 ; Note that the height of the mouse cursor must not exceed 32
7 ; lines, otherwise the display routines won't do The Right
8 ; Thing(tm).
9 ;
10
11         .export mouse_pm_bits
12         .export mouse_pm_height    : zeropage
13         .export mouse_pm_hotspot_x : zeropage
14         .export mouse_pm_hotspot_y : zeropage
15
16
17         .data
18
19 mouse_pm_bits:
20         .byte   %11110000
21         .byte   %11000000
22         .byte   %10100000
23         .byte   %10010000
24         .byte   %10001000
25         .byte   %00000100
26         .byte   %00000010
27
28 mouse_pm_height = * - mouse_pm_bits
29
30 ; hot spot is upper left corner
31 mouse_pm_hotspot_x = 0
32 mouse_pm_hotspot_y = 0