mirror of
https://github.com/cc65/cc65.git
synced 2024-11-04 17:04:58 +00:00
22 lines
301 B
ArmAsm
22 lines
301 B
ArmAsm
|
|
||
|
;
|
||
|
; Maciej 'YTM/Alliance' Witkowiak
|
||
|
;
|
||
|
; 29.10.99
|
||
|
|
||
|
; char TestPoint (struct pixel *mypixel);
|
||
|
|
||
|
.import PointRegs
|
||
|
.export _TestPoint
|
||
|
|
||
|
.include "../inc/jumptab.inc"
|
||
|
|
||
|
_TestPoint:
|
||
|
jsr PointRegs
|
||
|
jsr TestPoint
|
||
|
bcc goFalse
|
||
|
lda #$ff
|
||
|
rts
|
||
|
goFalse: lda #0
|
||
|
rts
|