]> git.sur5r.net Git - cc65/blob - libsrc/atari/mcbpm-shape.s
Changed most "backticks" (grave accents) into apostrophes.
[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         .rodata
17
18 mouse_pm_bits:
19         .byte   %11110000
20         .byte   %11000000
21         .byte   %10100000
22         .byte   %10010000
23         .byte   %10001000
24         .byte   %00000100
25         .byte   %00000010
26
27 mouse_pm_height = <(* - mouse_pm_bits)
28
29 ; hot spot is upper left corner
30 mouse_pm_hotspot_x = 0
31 mouse_pm_hotspot_y = 0