]> git.sur5r.net Git - cc65/blob - libsrc/geos-cbm/graph/testpoint.s
Avoid paths in .include directives. The path needs to be rather set in the Makefile...
[cc65] / libsrc / geos-cbm / graph / testpoint.s
1
2 ;
3 ; Maciej 'YTM/Elysium' Witkowiak
4 ;
5 ; 29.10.1999, 2.1.2003
6
7 ; char TestPoint        (struct pixel *mypixel);
8
9             .import PointRegs
10             .import return0, return1
11             .export _TestPoint
12
13             .include "jumptab.inc"
14             
15 _TestPoint:
16             jsr PointRegs
17             jsr TestPoint
18             bcc goFalse
19             jmp return1
20 goFalse:    jmp return0